added command line, added basic character
This commit is contained in:
24
public/gamemode.h
Normal file
24
public/gamemode.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef GAMEMODE_H
|
||||
#define GAMEMODE_H
|
||||
|
||||
#include "tier0/platform.h"
|
||||
|
||||
class CGameMode
|
||||
{
|
||||
public:
|
||||
virtual void RoundBegin( void );
|
||||
virtual void RoundEnd( void );
|
||||
bool bCanPlayerSpawnMidRound;
|
||||
};
|
||||
|
||||
interface IGameModeManager
|
||||
{
|
||||
public:
|
||||
static void Init( void );
|
||||
static void Frame( void );
|
||||
static void StartGameMode(CGameMode *pGameMode);
|
||||
static CGameMode *GetCurrentMode( void );
|
||||
static void RestartCurrentMode( void );
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user