blob: c8d3f3286270007015b2601fddc8febad0181fd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* (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. */
#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);
virtual void Snap(int SnappingClient);
virtual void Tick();
};
#endif
|