Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/world_entities/items/item_container.h @ 6693

Last change on this file since 6693 was 6693, checked in by patrick, 18 years ago

branches: removed spaceshipcontrol branche

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.