Changeset 11704 for code/trunk/src/orxonox/interfaces
- Timestamp:
- Jan 6, 2018, 3:16:00 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/interfaces/Pickupable.h
r11353 r11704 96 96 97 97 /** 98 @brief Check whether the Pickupable is in the process of being destroyed.99 @return Returns true if so.100 */101 inline bool isBeingDestroyed(void)102 { return this->beingDestroyed_; }103 104 /**105 98 @brief Returns whether the Pickupable is currently picked up. 106 99 @return Returns true if the Pickupable is currently picked up, false if not. … … 162 155 163 156 /** 157 @brief Check whether the Pickupable is in the process of being destroyed. 158 @return Returns true if so. 159 */ 160 inline bool isBeingDestroyed(void) 161 { return this->beingDestroyed_; } 162 163 /** 164 164 @brief Facilitates the creation of a PickupSpawner upon dropping of the Pickupable. 165 165 This method must be implemented by any class directly inheriting from Pickupable.
Note: See TracChangeset
for help on using the changeset viewer.