ddnet/src/game/server/gamemodes/mod.hpp

14 lines
406 B
C++
Raw Normal View History

2009-01-11 09:29:15 +00:00
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
#include <game/server/gamecontroller.hpp>
2009-01-11 13:23:40 +00:00
// you can subclass GAMECONTROLLER_CTF, GAMECONTROLLER_TDM etc if you want
// todo a modification with their base as well.
2009-01-11 09:29:15 +00:00
class GAMECONTROLLER_MOD : public GAMECONTROLLER
{
public:
GAMECONTROLLER_MOD();
virtual void tick();
// add more virtual functions here if you wish
};