source:
code/branches/pickups/ShipItem.h
@
2256
Last change on this file since 2256 was 2128, checked in by dsommer, 16 years ago | |
---|---|
File size: 365 bytes |
Line | |
---|---|
1 | #ifndef _ShipItems_H__ |
2 | #define _ShipItems_H__ |
3 | #include <string> |
4 | #include "SpaceShip.h" |
5 | #include <map> |
6 | #include "ShipEquipmentClasses.h" |
7 | |
8 | enum itemType{ //Diffrent Types of Items |
9 | |
10 | Usable, |
11 | Powerups, |
12 | Permanent, |
13 | }; |
14 | |
15 | namespace orxonox{ |
16 | |
17 | |
18 | |
19 | |
20 | Class _OrxonoxExport ShipItem{ |
21 | |
22 | public: |
23 | itemType CheckType(); |
24 | |
25 | private: |
26 | itemType type; |
27 | |
28 | |
29 | |
30 | |
31 | |
32 | |
33 | |
34 | |
35 | |
36 | |
37 | |
38 | |
39 | |
40 | |
41 | #endif |
Note: See TracBrowser
for help on using the repository browser.