mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
16 lines
300 B
C++
16 lines
300 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();
|
|
}
|