This commit is contained in:
2025-05-25 23:37:40 +03:00
commit 7f054e2904
79 changed files with 4850 additions and 0 deletions

14
public/server.h Normal file
View File

@@ -0,0 +1,14 @@
#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