blob: 806e799a462d79cedf503e9a7db14bb4a15e4269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* (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 Tick();
};
#endif
|