Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 4608 was 4483, checked in by bensch, 19 years ago

orxonox/trunk: proto documented

File size: 493 bytes
Line 
1/*!
2    \file proto_world_entity.h
3
4    description
5*/
6
7#ifndef _PROTO_WORLD_ENTITY_H
8#define _PROTO_WORLD_ENTITY_H
9
10#include "world_entity.h"
11
12//! A Class to ...
13class ProtoWorldEntity : public WorldEntity
14{
15
16 public:
17  ProtoWorldEntity();
18  ProtoWorldEntity(const TiXmlElement* root);
19  virtual ~ProtoWorldEntity();
20 
21  void loadParams(const TiXmlElement* root);
22  void init();
23 
24  virtual void draw();
25  virtual void tick(float time);
26
27 private:
28
29};
30
31#endif /* _PROTO_WORLD_ENTITY_H */
Note: See TracBrowser for help on using the repository browser.