blob: 35d6d98913261b77f6c707c0402b7b4c596366eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
#include <game/server/gamecontroller.hpp>
class GAMECONTROLLER_MOD : public GAMECONTROLLER
{
public:
GAMECONTROLLER_MOD();
virtual void tick();
// add more virtual functions here if you wish
};
|