source:
orxonox.OLD/branches/cleanup/src/world_entities/satellite.h
@
10588
Last change on this file since 10588 was 10571, checked in by bensch, 18 years ago | |
---|---|
File size: 536 bytes |
Rev | Line | |
---|---|---|
[4597] | 1 | /*! |
[5039] | 2 | * @file world_entity.h |
[4836] | 3 | * Definition of the basic WorldEntity |
[3750] | 4 | */ |
5 | ||
6 | #ifndef _SATELLITE_H | |
7 | #define _SATELLITE_H | |
8 | ||
9 | #include "world_entity.h" | |
10 | ||
11 | class CharacterAttributes; | |
12 | class Model; | |
13 | ||
14 | ||
15 | //! Basic class from which all interactive stuff in the world is derived from | |
16 | class Satellite : public WorldEntity | |
[4597] | 17 | { |
[9869] | 18 | ObjectListDeclaration(Satellite); |
[3750] | 19 | |
20 | public: | |
21 | Satellite (Vector axis, float speed); | |
22 | virtual ~Satellite (); | |
23 | ||
24 | virtual void tick (float time); | |
[4597] | 25 | |
[3750] | 26 | private: |
[4597] | 27 | Vector* axis; |
28 | float speed; | |
[3750] | 29 | |
[4597] | 30 | |
[3750] | 31 | }; |
32 | ||
33 | #endif /* _SATELLITE_H */ |
Note: See TracBrowser
for help on using the repository browser.