Last change
on this file since 4415 was
3762,
checked in by bensch, 20 years ago
|
orxonox/trunk: added the tick function
|
File size:
381 bytes
|
Line | |
---|
1 | /*! |
---|
2 | \file proto_world_entity |
---|
3 | |
---|
4 | */ |
---|
5 | |
---|
6 | #ifndef _PROTO_WORLD_ENTITY_H |
---|
7 | #define _PROTO_WORLD_ENTITY_H |
---|
8 | |
---|
9 | #include "world_entity.h" |
---|
10 | |
---|
11 | //! A Class to ... |
---|
12 | class ProtoWorldEntity : public WorldEntity |
---|
13 | { |
---|
14 | |
---|
15 | public: |
---|
16 | ProtoWorldEntity(); |
---|
17 | virtual ~ProtoWorldEntity(); |
---|
18 | void init(); |
---|
19 | |
---|
20 | virtual void draw(); |
---|
21 | virtual void tick(float time); |
---|
22 | |
---|
23 | private: |
---|
24 | |
---|
25 | }; |
---|
26 | |
---|
27 | #endif /* _PROTO_WORLD_ENTITY_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.