added command line, added basic character
This commit is contained in:
@@ -3,6 +3,8 @@
|
||||
|
||||
/* for windows as it sucks */
|
||||
#include "tier0/platform.h"
|
||||
#include "server.h"
|
||||
#include "tier1/utlvector.h"
|
||||
|
||||
class CBaseEntity;
|
||||
|
||||
@@ -14,12 +16,18 @@ public:
|
||||
static void Shutdown();
|
||||
};
|
||||
|
||||
extern IIClient g_localClient;
|
||||
extern CUtlVector<IIClient*> g_clients;
|
||||
|
||||
|
||||
interface IIEngine
|
||||
{
|
||||
public:
|
||||
static CBaseEntity *SpawnEntity( const char *szName );
|
||||
static void InitEntity(CBaseEntity *pEntity);
|
||||
static void DestroyEntity( CBaseEntity *pEntity );
|
||||
static void ConnectClient( IIClient *pClient);
|
||||
static void DisconnectClient( IIClient *pClient);
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user