[server] Add CPlugins and CNetGame stubs

This commit is contained in:
RD42
2023-10-29 00:00:36 +08:00
parent 824a608f80
commit 61d4bba25e
7 changed files with 610 additions and 2 deletions

15
server/plugins.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef _PLUGINS_H_INCLUDED
#define _PLUGINS_H_INCLUDED
class CPlugins // size: W: 1216 L: 1212
{
private:
public:
CPlugins();
~CPlugins();
void LoadPlugins(char *szSearchPath);
};
#endif