14 lines
224 B
C++
14 lines
224 B
C++
#ifndef SERVER_H
|
|
#define SERVER_H
|
|
|
|
#include "tier0/platform.h"
|
|
|
|
interface IServer
|
|
{
|
|
public:
|
|
static void LoadGame( const char *psz );
|
|
static void Think( float fDelta );
|
|
static void UnloadGame( const char *psz );
|
|
};
|
|
|
|
#endif |