Changeset 8866 for code/trunk/src/orxonox
- Timestamp:
- Aug 24, 2011, 3:28:55 PM (13 years ago)
- Location:
- code/trunk/src/orxonox/interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/interfaces/Pickupable.cc
r8858 r8866 346 346 /** 347 347 @brief 348 Creates a duplicate of the input OrxonoxClass.349 This method needs to be implemented by any Class inheriting from Pickupable.350 @param item351 A reference to a pointer to the OrxonoxClass that is to be duplicated.352 */353 void Pickupable::clone(OrxonoxClass*& item)354 {355 SUPER(Pickupable, clone, item);356 }357 358 /**359 @brief360 348 Method to transcribe a Pickupable as a Rewardable to the player. 361 349 @param player -
code/trunk/src/orxonox/interfaces/Pickupable.h
r7552 r8866 137 137 138 138 Pickupable* clone(void); //!< Creates a duplicate of the Pickupable. 139 virtual void clone(OrxonoxClass*& item); //!< Creates a duplicate of the input OrxonoxClass. 139 /** 140 @brief Creates a duplicate of the input OrxonoxClass. 141 This method needs to be implemented by any Class inheriting from Pickupable. 142 @param item A reference to a pointer to the OrxonoxClass that is to be duplicated. 143 */ 144 virtual void clone(OrxonoxClass*& item) {} 140 145 141 146 /** … … 200 205 SUPER_FUNCTION(12, Pickupable, changedCarrier, false); 201 206 SUPER_FUNCTION(13, Pickupable, changedPickedUp, false); 207 SUPER_FUNCTION(11, Pickupable, clone, false); 202 208 } 203 209
Note: See TracChangeset
for help on using the changeset viewer.