Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/pickups2/src/orxonox/objects/pickup/ShipItem.cc @ 2136

Last change on this file since 2136 was 2136, checked in by landauf, 15 years ago

merged changes from pickups1 to pickups2, not merged (probably) accidentally added files

  • Property svn:eol-style set to native
File size: 391 bytes
Line 
1#include "Shipitem.h"
2
3namespace orxonox
4{
5    itemtype ShipItem::CheckType()
6    {
7        return this->type;
8    }
9
10    subItemTypePermanent CheckSubType()
11    {
12        return this->subtype_permanent;
13    }
14
15    subItemTypePowerups CheckSubType()
16    {
17        return this->subtype_powerups;
18    }
19    subItemTypeUsable CheckSubType()
20    {
21        return this->subtype_usables;
22    }
23
24}
Note: See TracBrowser for help on using the repository browser.