mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 00:27:44 +00:00
17 lines
397 B
C++
17 lines
397 B
C++
#include <Script/NativeScriptApi.h>
|
|
|
|
extern Sapphire::ScriptAPI::ScriptObject* makeScriptActionReturn6();
|
|
extern Sapphire::ScriptAPI::ScriptObject* makeScriptActionSprint3();
|
|
|
|
const Sapphire::ScriptAPI::ScriptObject* ptrs[] =
|
|
{
|
|
makeScriptActionReturn6(),
|
|
makeScriptActionSprint3(),
|
|
|
|
nullptr
|
|
};
|
|
|
|
extern "C" EXPORT const Sapphire::ScriptAPI::ScriptObject** getScripts()
|
|
{
|
|
return ptrs;
|
|
}
|