Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 4838 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
Line 
1/*!
2 * @file proto_world_entity.h
3 * @brief description
4*/
5
6#ifndef _PROTO_WORLD_ENTITY_H
7#define _PROTO_WORLD_ENTITY_H
8
9#include "world_entity.h"
10
11//! A Class to ...
12class ProtoWorldEntity : public WorldEntity
13{
14
15 public:
16  ProtoWorldEntity(const TiXmlElement* root = NULL);
17  virtual ~ProtoWorldEntity();
18
19  void loadParams(const TiXmlElement* root);
20  void init();
21
22  virtual void draw();
23  virtual void tick(float time);
24
25 private:
26
27};
28
29#endif /* _PROTO_WORLD_ENTITY_H */
Note: See TracBrowser for help on using the repository browser.