#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