about summary refs log tree commit diff
path: root/src/game/server/gamemodes/mod.h
blob: 847d35f3d2ee3ac8ac053140caed6948b23a2312 (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_MOD_H
#define GAME_SERVER_GAMEMODES_MOD_H
#include <game/server/gamecontroller.h>

// you can subclass GAMECONTROLLER_CTF, GAMECONTROLLER_TDM etc if you want
// todo a modification with their base as well.
class CGameControllerMOD : public IGameController
{
public:
	CGameControllerMOD(class CGameContext *pGameServer);
	virtual void Tick();
	// add more virtual functions here if you wish
};
#endif