Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 23, 2006, 2:02:22 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: ammoContainer added

Location:
trunk/src/world_entities/items
Files:
1 added
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/items/item_container.h

    r6653 r6655  
    11/*!
    2  * @file proto_class.h
    3  * @brief Definition of ...
    4 */
     2 * @file item_container.h
     3 * @brief Definition of a Container for Items one can pick up
     4 */
    55
    6 #ifndef _PROTO_CLASS_H
    7 #define _PROTO_CLASS_H
     6#ifndef _ITEM_CONTAINER_H
     7#define _ITEM_CONTAINER_H
    88
    99#include "base_object.h"
     
    1313
    1414
    15 //! A class for ...
    16 class ProtoClass : public BaseObject {
     15//! A class for storing collected Items.
     16class ItemContainer : public BaseObject {
    1717
    1818 public:
    19   ProtoClass();
    20   virtual ~ProtoClass();
     19  ItemContainer();
     20  virtual ~ItemContainer();
    2121
    2222
     
    2525};
    2626
    27 #endif /* _PROTO_CLASS_H */
     27#endif /* _ITEM_CONTAINER_H */
Note: See TracChangeset for help on using the changeset viewer.