2010-07-29 07:36:49 +00:00
|
|
|
/* // copyright (c) 2007 magnus auvinen, see licence.txt for more info
|
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
|
|
|
DoPlayerScoreWincheck();
|
|
|
|
IGameController::Tick();
|
2007-09-25 23:03:15 +00:00
|
|
|
}
|
2010-07-29 07:36:49 +00:00
|
|
|
*/
|