|
Last change
on this file since 3528 was
3524,
checked in by patrick, 21 years ago
|
|
orxonox/trunk/world_entities: adding missing primitive class
|
|
File size:
515 bytes
|
| Line | |
|---|
| 1 | #ifndef _PRIMITIVE_H |
|---|
| 2 | #define _PRIMITIVE_H |
|---|
| 3 | |
|---|
| 4 | #include "world_entity.h" |
|---|
| 5 | |
|---|
| 6 | typedef enum PRIMITIVE_FORM {PSPHERE = 0, PCUBE, PSQUARE}; |
|---|
| 7 | |
|---|
| 8 | class Primitive : public WorldEntity |
|---|
| 9 | { |
|---|
| 10 | friend class World; |
|---|
| 11 | |
|---|
| 12 | public: |
|---|
| 13 | Primitive (PRIMITIVE_FORM form); |
|---|
| 14 | ~Primitive (); |
|---|
| 15 | |
|---|
| 16 | virtual void tick (float time); |
|---|
| 17 | virtual void hit (WorldEntity* weapon, Vector loc); |
|---|
| 18 | virtual void destroy (); |
|---|
| 19 | virtual void collide (WorldEntity* other, Uint32 ownhitflags, Uint32 otherhitflags); |
|---|
| 20 | virtual void draw (); |
|---|
| 21 | |
|---|
| 22 | }; |
|---|
| 23 | |
|---|
| 24 | #endif /* _PRIMITIVE_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.