blob: d2b69b43b9acd29a2b6935ee6379171414c319d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* (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();
}
|