Changeset 7984 in orxonox.OLD for branches/network/src/util
- Timestamp:
- May 30, 2006, 5:36:03 PM (19 years ago)
- Location:
- branches/network/src/util
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/util/Makefile.am
r7482 r7984 10 10 \ 11 11 game_rules.cc \ 12 network_game_rules.cc \ 12 13 multiplayer_team_deathmatch.cc \ 13 14 singleplayer_shootemup.cc \ … … 34 35 \ 35 36 game_rules.h \ 37 network_game_rules.h \ 36 38 multiplayer_team_deathmatch.h \ 37 39 singleplayer_shootemup.h \ -
branches/network/src/util/multiplayer_team_deathmatch.cc
r7954 r7984 45 45 */ 46 46 MultiplayerTeamDeathmatch::MultiplayerTeamDeathmatch(const TiXmlElement* root) 47 : GameRules(root)47 : NetworkGameRules(root) 48 48 { 49 49 this->setClassID(CL_MULTIPLAYER_TEAM_DEATHMATCH, "MultiplayerTeamDeathmatch"); -
branches/network/src/util/multiplayer_team_deathmatch.h
r7810 r7984 10 10 #define _MULTIPLAYER_TEAM_DEATHMATCH_H 11 11 12 #include " game_rules.h"12 #include "network_game_rules.h" 13 13 14 14 … … 19 19 20 20 21 class MultiplayerTeamDeathmatch : public GameRules21 class MultiplayerTeamDeathmatch : public NetworkGameRules 22 22 { 23 23
Note: See TracChangeset
for help on using the changeset viewer.