mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 03:58:18 +00:00
12 lines
255 B
C
12 lines
255 B
C
|
#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
|