about summary refs log tree commit diff
path: root/src/game/server/gamecontroller.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/server/gamecontroller.h')
-rw-r--r--src/game/server/gamecontroller.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/game/server/gamecontroller.h b/src/game/server/gamecontroller.h
index 4706df48..914f7985 100644
--- a/src/game/server/gamecontroller.h
+++ b/src/game/server/gamecontroller.h
@@ -72,8 +72,8 @@ public:
 
 	void DoWarmup(int Seconds);
 
-	void StartRound();
-	void EndRound();
+	virtual void StartRound();
+	virtual void EndRound();
 	void ChangeMap(const char *pToMap);
 
 	bool IsFriendlyFire(int ClientID1, int ClientID2);
@@ -141,6 +141,8 @@ public:
 	int ClampTeam(int Team);
 
 	virtual void PostReset();
+	
+	virtual bool IsZCatch();
 };
 
 #endif