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"
|
2007-09-25 23:03:15 +00:00
|
|
|
|
2008-08-31 21:50:14 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CGameControllerDM::CGameControllerDM(class CGameContext *pGameServer)
|
|
|
|
: IGameController(pGameServer)
|
2008-08-31 21:50:14 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
m_pGameType = "DM";
|
2008-08-31 21:50:14 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void CGameControllerDM::Tick()
|
2007-09-25 23:03:15 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
IGameController::Tick();
|
2007-09-25 23:03:15 +00:00
|
|
|
}
|