mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 06:27:45 +00:00
17 lines
226 B
C++
17 lines
226 B
C++
#include <vector>
|
|
#include <Script/NativeScriptApi.h>
|
|
|
|
class ScriptObject;
|
|
|
|
@ScriptIncludes@
|
|
|
|
const ScriptObject* ptrs[] =
|
|
{
|
|
@ScriptNames@
|
|
nullptr
|
|
};
|
|
|
|
extern "C" EXPORT const ScriptObject** getScripts()
|
|
{
|
|
return ptrs;
|
|
}
|