ddnet/src/game/server/gamemodes/dm.cpp
GreYFoXGTi f41d4851d2 Cleanup a bit and modified the binary name
Signed-off-by: GreYFoXGTi <GreYFoXGTi@Gmail.com>
2010-07-29 10:40:27 +03:00

16 lines
306 B
C++

/* // copyright (c) 2007 magnus auvinen, see licence.txt for more info
#include "dm.h"
CGameControllerDM::CGameControllerDM(class CGameContext *pGameServer)
: IGameController(pGameServer)
{
m_pGameType = "DM";
}
void CGameControllerDM::Tick()
{
DoPlayerScoreWincheck();
IGameController::Tick();
}
*/