source:
code/branches/pickups2/src/orxonox/objects/pickup/Item.h
@
2217
Last change on this file since 2217 was 2202, checked in by dsommer, 16 years ago | |
---|---|
File size: 351 bytes |
Line | |
---|---|
1 | namespace orxonox |
2 | { |
3 | class _OrxonoxExport Item |
4 | { |
5 | public: |
6 | virtual bool pickedUp(Pawn* player); |
7 | virtual bool dropped(Pawn* player); //erst bei festen Items |
8 | void addTo(Pawn* player); |
9 | void removeFrom(Pawn* player); |
10 | string getPlayerBaseClass(); |
11 | Item( BaseObject* creator); |
12 | ~Item(); |
13 | |
14 | private: |
15 | Identifier* PlayerBaseClass; //class(...) |
16 | |
17 | |
18 | } |
19 | } |
20 |
Note: See TracBrowser
for help on using the repository browser.