blob: 9915a615fc155b4257e16ce1d403e3f78f0c8ab8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
#include <game/server/gamecontroller.hpp>
// you can subclass GAMECONTROLLER_CTF, GAMECONTROLLER_TDM etc if you want
// todo a modification with their base as well.
class GAMECONTROLLER_MOD : public GAMECONTROLLER
{
public:
GAMECONTROLLER_MOD();
virtual void tick();
// add more virtual functions here if you wish
};
|