mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-23 06:57:31 +08:00
23 lines
334 B
C++
23 lines
334 B
C++
|
|
#ifndef _PLUGINS_H_INCLUDED
|
|
#define _PLUGINS_H_INCLUDED
|
|
|
|
#include "plugincommon.h"
|
|
#include "plugininternal.h"
|
|
|
|
class CPlugins // size: W: 1216 L: 1212
|
|
{
|
|
private:
|
|
|
|
void* m_PluginData[MAX_PLUGIN_DATA];
|
|
void* m_AMXExports[MAX_PLUGIN_AMX_EXPORT];
|
|
|
|
public:
|
|
CPlugins();
|
|
~CPlugins();
|
|
|
|
void LoadPlugins(char *szSearchPath);
|
|
};
|
|
|
|
#endif
|