/* (c) Shereef Marzouk. See "licence DDRace.txt" and the readme.txt in the root of the distribution for more information. */ #ifndef GAME_SERVER_GAMEMODES_DDRACE_H #define GAME_SERVER_GAMEMODES_DDRACE_H #include #include #include #include #include struct CSqlInitResult; class CGameControllerDDRace: public IGameController { public: CGameControllerDDRace(class CGameContext *pGameServer); ~CGameControllerDDRace(); CGameTeams m_Teams; std::map > m_TeleOuts; std::map > m_TeleCheckOuts; void InitTeleporter(); virtual void Tick(); std::shared_ptr m_pInitResult; }; #endif // GAME_SERVER_GAMEMODES_DDRACE_H