mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 10:38:20 +00:00
16 lines
398 B
C++
16 lines
398 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()
|
|
{
|
|
IGameController::Tick();
|
|
}
|