ddnet/src/game/server/gamemodes/dm.cpp
2011-01-06 05:46:10 +02:00

19 lines
430 B
C++

/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
/*
#include "dm.h"
CGameControllerDM::CGameControllerDM(class CGameContext *pGameServer)
: IGameController(pGameServer)
{
m_pGameType = "DM";
}
void CGameControllerDM::Tick()
{
DoPlayerScoreWincheck();
IGameController::Tick();
}
*/