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