13 lines
196 B
C
13 lines
196 B
C
#ifndef CLIENT_H
|
|
#define CLIENT_H
|
|
|
|
#include "tier0/platform.h"
|
|
|
|
interface IClient
|
|
{
|
|
void LoadGame( const char *psz );
|
|
void Frame( float flDelta );
|
|
void UnloadGame( const char *psz );
|
|
};
|
|
|
|
#endif |