Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7984 in orxonox.OLD for branches/network/src/util


Ignore:
Timestamp:
May 30, 2006, 5:36:03 PM (18 years ago)
Author:
rennerc
Message:

new NetworkGameManager

Location:
branches/network/src/util
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/util/Makefile.am

    r7482 r7984  
    1010                        \
    1111                        game_rules.cc \
     12                        network_game_rules.cc \
    1213                        multiplayer_team_deathmatch.cc \
    1314                        singleplayer_shootemup.cc \
     
    3435                        \
    3536                        game_rules.h \
     37                        network_game_rules.h \
    3638                        multiplayer_team_deathmatch.h \
    3739                        singleplayer_shootemup.h \
  • branches/network/src/util/multiplayer_team_deathmatch.cc

    r7954 r7984  
    4545 */
    4646MultiplayerTeamDeathmatch::MultiplayerTeamDeathmatch(const TiXmlElement* root)
    47   : GameRules(root)
     47  : NetworkGameRules(root)
    4848{
    4949  this->setClassID(CL_MULTIPLAYER_TEAM_DEATHMATCH, "MultiplayerTeamDeathmatch");
  • branches/network/src/util/multiplayer_team_deathmatch.h

    r7810 r7984  
    1010#define _MULTIPLAYER_TEAM_DEATHMATCH_H
    1111
    12 #include "game_rules.h"
     12#include "network_game_rules.h"
    1313
    1414
     
    1919
    2020
    21 class MultiplayerTeamDeathmatch : public GameRules
     21class MultiplayerTeamDeathmatch : public NetworkGameRules
    2222{
    2323
Note: See TracChangeset for help on using the changeset viewer.