Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/items/item_container.h @ 6655

Last change on this file since 6655 was 6655, checked in by bensch, 18 years ago

orxonox/trunk: ammoContainer added

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.
16class 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.