about summary refs log tree commit diff
path: root/src/game/server/gamemodes/ctf.h
diff options
context:
space:
mode:
authorChoupom <andycootlapin@hotmail.fr>2010-09-06 12:29:28 +0200
committeroy <Tom_Adams@web.de>2010-09-07 20:02:46 +0200
commit532ea85aebc9dc2ce6d87fe484766bf37ab40970 (patch)
treed7820215260874cbaa01d9ed15fcdc46c52043b2 /src/game/server/gamemodes/ctf.h
parent6299f6518aa8576fa06f62101aa466c3da528fb1 (diff)
downloadzcatch-532ea85aebc9dc2ce6d87fe484766bf37ab40970.tar.gz
zcatch-532ea85aebc9dc2ce6d87fe484766bf37ab40970.zip
separated CFlag from ctf
Diffstat (limited to 'src/game/server/gamemodes/ctf.h')
-rw-r--r--src/game/server/gamemodes/ctf.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/game/server/gamemodes/ctf.h b/src/game/server/gamemodes/ctf.h
index 16c6097a..f50509be 100644
--- a/src/game/server/gamemodes/ctf.h
+++ b/src/game/server/gamemodes/ctf.h
@@ -16,24 +16,5 @@ public:
 	virtual int OnCharacterDeath(class CCharacter *pVictim, class CPlayer *pKiller, int Weapon);
 };
 
-// TODO: move to seperate file
-class CFlag : public CEntity
-{
-public:
-	static const int ms_PhysSize = 14;
-	CCharacter *m_pCarryingCharacter;
-	vec2 m_Vel;
-	vec2 m_StandPos;
-	
-	int m_Team;
-	int m_AtStand;
-	int m_DropTick;
-	int m_GrabTick;
-	
-	CFlag(CGameWorld *pGameWorld, int Team);
-
-	virtual void Reset();
-	virtual void Snap(int SnappingClient);
-};
 #endif