mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-27 23:35:36 +03:00
9 lines
182 B
C
9 lines
182 B
C
|
#ifndef _MYPLUGIN_INCLUDE_H
|
||
|
#define _MYPLUGIN_INCLUDE_H
|
||
|
|
||
|
#include "studio_api.h"
|
||
|
|
||
|
EXPORT void PluginLoad(load_info *pInfo);
|
||
|
EXPORT void PluginUnload();
|
||
|
|
||
|
#endif //_MYPLUGIN_INCLUDE_H
|