Last change
on this file since 1235 was
1235,
checked in by sam, 11 years ago
|
orbital: add a skeleton project for Orbital.
|
File size:
310 bytes
|
Line | |
---|
1 | #if !defined __ORBITAL_H__ |
---|
2 | #define __ORBITAL_H__ |
---|
3 | |
---|
4 | class Orbital : public WorldEntity |
---|
5 | { |
---|
6 | public: |
---|
7 | Orbital(); |
---|
8 | virtual ~Orbital(); |
---|
9 | |
---|
10 | char const *GetName() { return "<orbital>"; } |
---|
11 | |
---|
12 | protected: |
---|
13 | virtual void TickGame(float deltams); |
---|
14 | virtual void TickDraw(float deltams); |
---|
15 | }; |
---|
16 | |
---|
17 | #endif // __ORBITAL_H__ |
---|
18 | |
---|
Note: See
TracBrowser
for help on using the repository browser.