mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
f41d4851d2
Signed-off-by: GreYFoXGTi <GreYFoXGTi@Gmail.com>
16 lines
306 B
C++
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();
|
|
}
|
|
*/ |