/* (c) Shereef Marzouk. See "licence DDRace.txt" and the readme.txt in the root of the distribution for more information. */ #ifndef DDRACE_H #define DDRACE_H #include #include #include #include #include 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(); }; #endif