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

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