Changeset 6519 for code/branches/pickup3/src/modules/pickup/items
- Timestamp:
- Mar 13, 2010, 3:32:34 PM (15 years ago)
- Location:
- code/branches/pickup3/src/modules/pickup/items
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pickup3/src/modules/pickup/items/MetaPickup.cc
r6518 r6519 27 27 */ 28 28 29 /** 30 @file 31 @brief Implementation of the MetaPickup class. 32 */ 33 29 34 #include "core/CoreIncludes.h" 30 35 #include "core/XMLPort.h" … … 42 47 /*static*/ const std::string MetaPickup::metaTypeDrop_s = "drop"; 43 48 49 /** 50 @brief 51 Constructor. 52 */ 44 53 MetaPickup::MetaPickup(BaseObject* creator) : Pickup(creator) 45 54 { -
code/branches/pickup3/src/modules/pickup/items/MetaPickup.h
r6518 r6519 27 27 */ 28 28 29 /** 30 @file 31 @brief Definition of the MetaPickup class. 32 */ 33 29 34 #ifndef _MetaPickup_H__ 30 35 #define _MetaPickup_H__ … … 36 41 namespace orxonox { 37 42 43 //! The meta type, deciding what the pickup does exactly. 38 44 namespace pickupMetaType 39 45 { … … 46 52 } 47 53 54 /** 55 @brief 56 The MetaPickup is a pickup that can, depending on the parameters, either drop all pickups of the PickupCarrier that picks it up, or use all the unused pickups of the PickupCarrier, that picks it up. The parameter to set for this is the metaType and it can be used with the values 'none', 'drop' and 'use'. 57 @author 58 Damian 'Mozork' Frick 59 */ 48 60 class _PickupExport MetaPickup : public Pickup 49 61 { 50 friend class PickupCarrier;51 62 52 63 public:
Note: See TracChangeset
for help on using the changeset viewer.