Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/mount_points/src/world_entities/mount_point.h @ 10053

Last change on this file since 10053 was 10050, checked in by patrick, 17 years ago

added some files for ground working

File size: 479 bytes
Line 
1#ifndef _MOUNT_POINT_H
2#define _MOUNT_POINT_H
3
4#include "world_entity.h"
5
6class TiXmlElement;
7
8
9class MountPoint : public WorldEntity
10{
11    ObjectListDeclaration(MountPoint);
12
13  public:
14    MountPoint ();
15    MountPoint(const TiXmlElement* root);
16    virtual ~MountPoint ();
17
18    void init();
19    virtual void loadParams(const TiXmlElement* root);
20
21
22    virtual void tick (float time);
23    virtual void draw() const;
24
25    void debugDraw() const;
26
27};
28
29#endif /* _MOUNT_POINT_H */
Note: See TracBrowser for help on using the repository browser.