Changeset 8706 for code/trunk/src/modules/pickup
- Timestamp:
- Jun 14, 2011, 8:53:28 PM (13 years ago)
- Location:
- code/trunk
- Files:
-
- 5 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/modules/pickup/PickupManager.h
r7547 r8706 148 148 @return Returns true if the input Pickupable is still valid, false if not. 149 149 */ 150 constbool isValidPickup(uint32_t pickup) const150 bool isValidPickup(uint32_t pickup) const 151 151 { return this->pickups_.find(pickup) != this->pickups_.end(); } 152 152 // tolua_end -
code/trunk/src/modules/pickup/PickupPrereqs.h
r8351 r8706 85 85 class SpeedPickup; 86 86 class ShieldPickup; 87 class ShrinkPickup; 87 88 88 89 } -
code/trunk/src/modules/pickup/PickupRepresentation.cc
r8079 r8706 57 57 58 58 this->initialize(); 59 this->setSyncMode( 0x0); // The default PickupRperesentation created by each PickupManager is not synchronised, since it only exists locally.59 this->setSyncMode(ObjectDirection::None); // The default PickupRperesentation created by each PickupManager is not synchronised, since it only exists locally. 60 60 } 61 61 -
code/trunk/src/modules/pickup/items/CMakeLists.txt
r7163 r8706 6 6 SpeedPickup.cc 7 7 ShieldPickup.cc 8 ShrinkPickup.cc 8 9 )
Note: See TracChangeset
for help on using the changeset viewer.