Changeset 7655 for code/trunk/src
- Timestamp:
- Nov 18, 2010, 9:54:39 PM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 8 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/lastmanstanding (added) merged: 7479-7481,7485,7542-7543,7554-7556,7561,7573,7579,7581,7583-7586,7596,7600,7602-7605,7617,7635-7637,7640-7644
- Property svn:mergeinfo changed
-
code/trunk/src/modules/notifications/Notification.h
r7552 r7655 80 80 81 81 void initialize(void); //!< Registers the object and sets some default values. 82 void registerVariables(void) {} 82 83 83 84 }; -
code/trunk/src/modules/overlays/OverlaysPrereqs.h
r7163 r7655 88 88 class HUDTimer; 89 89 class KillMessage; 90 class LastManStandingInfos; 90 91 class TeamBaseMatchScore; 91 92 class UnderAttackHealthBar; -
code/trunk/src/modules/overlays/hud/CMakeLists.txt
r7654 r7655 15 15 GametypeStaticMessage.cc 16 16 GametypeFadingMessage.cc 17 LastManStandingInfos.cc 17 18 ) -
code/trunk/src/orxonox/OrxonoxPrereqs.h
r7648 r7655 95 95 class Dynamicmatch; 96 96 class Gametype; 97 class LastManStanding; 97 98 class TeamBaseMatch; 98 99 class TeamDeathmatch; -
code/trunk/src/orxonox/gametypes/Asteroids.cc
r6417 r7655 41 41 RegisterObject(Asteroids); 42 42 this->firstCheckpointReached_ = false; 43 this->numberOfBots_=0; //sets number of default bots temporarly to 0 43 44 } 44 45 … … 75 76 COUT(0) << message << std::endl; 76 77 Host::Broadcast(message); 78 77 79 } 78 80 -
code/trunk/src/orxonox/gametypes/CMakeLists.txt
r7654 r7655 7 7 Asteroids.cc 8 8 Dynamicmatch.cc 9 LastManStanding.cc 9 10 ) -
code/trunk/src/orxonox/worldentities/pawns/Pawn.h
r7547 r7655 155 155 float shieldAbsorption_; // Has to be between 0 and 1 156 156 157 Pawn*lastHitOriginator_;157 WeakPtr<Pawn> lastHitOriginator_; 158 158 159 159 WeaponSystem* weaponSystem_;
Note: See TracChangeset
for help on using the changeset viewer.