blob: f2854680eacd1819e1f6bee8e546958c48395982 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef GAME_SERVER_GAMEMODES_DM_H
#define GAME_SERVER_GAMEMODES_DM_H
#include <game/server/gamecontroller.h>
class CGameControllerDM : public IGameController
{
public:
CGameControllerDM(class CGameContext *pGameServer);
virtual void Tick();
};
#endif
|