Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/pickups/src/orxonox/objects/pickup/ShipItem.h @ 1998

Last change on this file since 1998 was 1998, checked in by dsommer, 15 years ago

Pickups Basics

File size: 383 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
8enum itemType{ //Diffrent Types of Items
9       
10                Usable,
11                Powerups,
12                Permanent
13                };
14
15namespace orxonox{
16
17
18
19
20Class _OrxonoxExport ShipItem : public SpaceShip{
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.