2010-07-29 05:21:18 +00:00
|
|
|
/* copyright (c) 2007 rajh and gregwar. Score stuff */
|
|
|
|
|
2010-08-10 04:28:17 +00:00
|
|
|
#ifndef DDRACE_H
|
|
|
|
#define DDRACE_H
|
2010-07-29 05:21:18 +00:00
|
|
|
#include <game/server/gamecontroller.h>
|
|
|
|
#include <game/server/score.h>
|
|
|
|
|
2010-07-29 14:53:25 +00:00
|
|
|
class CGameControllerDDRace : public IGameController
|
2010-07-29 05:21:18 +00:00
|
|
|
{
|
|
|
|
public:
|
2010-08-10 04:28:17 +00:00
|
|
|
|
2010-07-29 14:53:25 +00:00
|
|
|
CGameControllerDDRace(class CGameContext *pGameServer);
|
2010-08-10 04:28:17 +00:00
|
|
|
~CGameControllerDDRace();
|
|
|
|
|
|
|
|
vec2 *m_pTeleporter;
|
|
|
|
|
|
|
|
void InitTeleporter();
|
2010-07-29 05:21:18 +00:00
|
|
|
|
|
|
|
virtual void Tick();
|
|
|
|
};
|
2010-08-10 04:28:17 +00:00
|
|
|
#endif
|