source: trunk/orbital/orbital.h @ 1245

Last change on this file since 1245 was 1245, checked in by sam, 11 years ago

orbital: start implementing the mesh builder features found in the original.

File size: 351 bytes
Line 
1#if !defined __ORBITAL_H__
2#define __ORBITAL_H__
3
4#include "mesh.h"
5
6class Orbital : public WorldEntity
7{
8public:
9    Orbital();
10    virtual ~Orbital();
11
12    char const *GetName() { return "<orbital>"; }
13
14protected:
15    virtual void TickGame(float deltams);
16    virtual void TickDraw(float deltams);
17
18private:
19    Mesh m;
20};
21
22#endif // __ORBITAL_H__
23
Note: See TracBrowser for help on using the repository browser.