ddnet/src/game/server/gamemodes/dm.cpp

19 lines
431 B
C++
Raw Normal View History

2010-11-20 10:37:14 +00:00
/* (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. */
/*
2010-05-29 07:25:38 +00:00
#include "dm.h"
2010-05-29 07:25:38 +00:00
CGameControllerDM::CGameControllerDM(class CGameContext *pGameServer)
: IGameController(pGameServer)
{
2010-05-29 07:25:38 +00:00
m_pGameType = "DM";
}
2010-05-29 07:25:38 +00:00
void CGameControllerDM::Tick()
{
2010-05-29 07:25:38 +00:00
DoPlayerScoreWincheck();
IGameController::Tick();
}
*/