Changeset 9220
- Timestamp:
- May 18, 2012, 5:46:57 PM (13 years ago)
- Location:
- code/branches/captureTheFlag
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/captureTheFlag/data/levels/captureTheFlag.oxw
r9218 r9220 16 16 17 17 <Level 18 gametype = " captureTheFlag"18 gametype = "CaptureTheFlag" 19 19 > 20 20 <templates> -
code/branches/captureTheFlag/src/modules/gametypes/CMakeLists.txt
r9217 r9220 5 5 OldSpaceRace.cc 6 6 OldRaceCheckPoint.cc 7 captureTheFlag.cc7 CaptureTheFlag.cc 8 8 ) 9 9 -
code/branches/captureTheFlag/src/modules/pickup/items/CMakeLists.txt
r8706 r9220 7 7 ShieldPickup.cc 8 8 ShrinkPickup.cc 9 FlagPickup.cc 9 10 ) -
code/branches/captureTheFlag/src/modules/pickup/items/FlagPickup.h
r9218 r9220 41 41 42 42 #include "pickup/Pickup.h" 43 #include "tools/Timer.h" 44 43 45 44 46 namespace orxonox { 45 47 /* 46 48 @ingroup PickupItems 47 49 */ … … 76 78 const std::string& getFlagType(void) const; //!< Get the flag type of this pickup. 77 79 80 int teamScore_; 78 81 79 82 virtual void changedUsed(void); //!< Is called when the pickup has transited from used to unused or the other way around. … … 97 100 pickupFlagType::Value flagType_; //!< The type of the FlagPickup. 98 101 99 int teamScore_;100 102 101 103 //! Strings for the flag types.
Note: See TracChangeset
for help on using the changeset viewer.