Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/proto/proto_world_entity.h @ 4982

Last change on this file since 4982 was 4838, checked in by bensch, 19 years ago

orxonox/trunk: Element2D added → will be moved to lib/graphics afterwards
ProtoClass update
EventListeners do not have to be unsubscribed externally, but still one listener won't unsubscribe

File size: 476 bytes
RevLine 
[4838]1/*!
2 * @file proto_world_entity.h
3 * @brief description
[3245]4*/
[1853]5
[3761]6#ifndef _PROTO_WORLD_ENTITY_H
7#define _PROTO_WORLD_ENTITY_H
[1853]8
[3559]9#include "world_entity.h"
[1853]10
[3761]11//! A Class to ...
[4838]12class ProtoWorldEntity : public WorldEntity
[3559]13{
[3543]14
[1904]15 public:
[4838]16  ProtoWorldEntity(const TiXmlElement* root = NULL);
[3761]17  virtual ~ProtoWorldEntity();
[4838]18
[4483]19  void loadParams(const TiXmlElement* root);
[3564]20  void init();
[4838]21
[3559]22  virtual void draw();
[3762]23  virtual void tick(float time);
[3245]24
25 private:
[3761]26
[1853]27};
28
[3761]29#endif /* _PROTO_WORLD_ENTITY_H */
Note: See TracBrowser for help on using the repository browser.