Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 4178 was 3762, checked in by bensch, 19 years ago

orxonox/trunk: added the tick function

File size: 381 bytes
RevLine 
[3245]1/*!
[3761]2    \file proto_world_entity
[3329]3
[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 ...
12class ProtoWorldEntity : public WorldEntity
[3559]13{
[3543]14
[1904]15 public:
[3761]16  ProtoWorldEntity();
17  virtual ~ProtoWorldEntity();
[3564]18  void init();
19 
[3559]20  virtual void draw();
[3762]21  virtual void tick(float time);
[3245]22
23 private:
[3761]24
[1853]25};
26
[3761]27#endif /* _PROTO_WORLD_ENTITY_H */
Note: See TracBrowser for help on using the repository browser.