no engine anymore

This commit is contained in:
2025-07-30 23:53:26 +03:00
parent 8a29e6b86f
commit 395ced9e28
159 changed files with 2767 additions and 9484 deletions

21
engine/sv_dll.cpp Normal file
View File

@@ -0,0 +1,21 @@
#include "sv_dll.h"
#include "tier1/interface.h"
#include "tier0/platform.h"
void CServerGameDLL::Init()
{
#if defined(__linux__)
#endif
}
void CServerGameDLL::Shutdown()
{
}
CServerGameDLL *ServerGameDLL()
{
static CServerGameDLL s_serverdll;
return &s_serverdll;
}