source:
orxonox.OLD/branches/terrain.older/src/world_entities/items/item_container.h
Last change on this file was 6655, checked in by bensch, 19 years ago | |
---|---|
File size: 390 bytes |
Line | |
---|---|
1 | /*! |
2 | * @file item_container.h |
3 | * @brief Definition of a Container for Items one can pick up |
4 | */ |
5 | |
6 | #ifndef _ITEM_CONTAINER_H |
7 | #define _ITEM_CONTAINER_H |
8 | |
9 | #include "base_object.h" |
10 | |
11 | // FORWARD DECLARATION |
12 | |
13 | |
14 | |
15 | //! A class for storing collected Items. |
16 | class ItemContainer : public BaseObject { |
17 | |
18 | public: |
19 | ItemContainer(); |
20 | virtual ~ItemContainer(); |
21 | |
22 | |
23 | private: |
24 | |
25 | }; |
26 | |
27 | #endif /* _ITEM_CONTAINER_H */ |
Note: See TracBrowser
for help on using the repository browser.