mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
35d16bd58c
Conflicts: src/engine/console.h src/engine/server.h src/engine/server/server.cpp src/engine/shared/config_variables.h src/engine/shared/console.cpp src/engine/shared/console.h src/engine/shared/network_server.cpp src/game/client/components/console.cpp src/game/client/components/console.h src/game/client/components/menus_browser.cpp src/game/client/gameclient.cpp src/game/editor/editor.cpp src/game/editor/editor.h src/game/editor/io.cpp src/game/editor/layer_tiles.cpp src/game/editor/popups.cpp src/game/gamecore.cpp src/game/mapitems.h src/game/server/entities/character.cpp src/game/server/entities/laser.cpp src/game/server/gamecontext.cpp src/game/server/gamecontroller.cpp src/game/server/gamecontroller.h src/game/server/gamemodes/ctf.cpp src/game/server/player.cpp src/game/variables.h
26 lines
776 B
C++
26 lines
776 B
C++
/* (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_CTF_H
|
|
#define GAME_SERVER_GAMEMODES_CTF_H
|
|
#include <game/server/gamecontroller.h>
|
|
#include <game/server/entity.h>
|
|
|
|
class CGameControllerCTF : public IGameController
|
|
{
|
|
public:
|
|
class CFlag *m_apFlags[2];
|
|
|
|
CGameControllerCTF(class CGameContext *pGameServer);
|
|
virtual void DoWincheck();
|
|
virtual bool CanBeMovedOnBalance(int ClientID);
|
|
virtual void Snap(int SnappingClient);
|
|
virtual void Tick();
|
|
|
|
virtual bool OnEntity(int Index, vec2 Pos);
|
|
virtual int OnCharacterDeath(class CCharacter *pVictim, class CPlayer *pKiller, int Weapon);
|
|
};
|
|
|
|
#endif
|
|
*/
|