|
Last change
on this file since 3314 was
2077,
checked in by patrick, 21 years ago
|
|
/orxonox/trunk/src: making doxygen comments in worldentity, player, world; extending API of worldentity; inserting list.h in world - this version does not compile
|
|
File size:
290 bytes
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | \file power_up.h |
|---|
| 3 | \brief A class representing a PowerUp in the world. |
|---|
| 4 | */ |
|---|
| 5 | |
|---|
| 6 | #ifndef POWER_UP_H |
|---|
| 7 | #define POWER_UP_H |
|---|
| 8 | |
|---|
| 9 | #include "data_tank.h" |
|---|
| 10 | #include "ability.h" |
|---|
| 11 | #include "world_entity.h" |
|---|
| 12 | |
|---|
| 13 | class PowerUp : Ability, WorldEntity { |
|---|
| 14 | |
|---|
| 15 | public: |
|---|
| 16 | PowerUp (); |
|---|
| 17 | ~PowerUp (); |
|---|
| 18 | |
|---|
| 19 | }; |
|---|
| 20 | |
|---|
| 21 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.