ddnet/src/game/server/gamemodes/tdm.h

17 lines
579 B
C
Raw Normal View History

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
#ifndef GAME_SERVER_GAMEMODES_TDM_H
#define GAME_SERVER_GAMEMODES_TDM_H
#include <game/server/gamecontroller.h>
class CGameControllerTDM : public IGameController
{
public:
CGameControllerTDM(class CGameContext *pGameServer);
int OnCharacterDeath(class CCharacter *pVictim, class CPlayer *pKiller, int Weapon);
2011-03-04 16:08:10 +00:00
virtual void Snap(int SnappingClient);
2010-05-29 07:25:38 +00:00
virtual void Tick();
};
#endif