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

22
public/sv_dll.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef SV_DLL_H
#define SV_DLL_H
#include "iappsystem.h"
#define SERVER_DLL_INTERFACE_NAME "ServerGameDLL001"
class CServerGameDLL: public IAppSystem
{
public:
virtual void Init() override;
virtual void Shutdown() override;
void GameFrame();
private:
void *m_pLibrary;
};
CServerGameDLL *ServerGameDLL();
#endif