Files
funnygame/public/client.h
2025-05-25 23:37:40 +03:00

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