mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 16:37:45 +00:00
17 lines
407 B
C++
17 lines
407 B
C++
#include <Script/NativeScriptApi.h>
|
|
|
|
#include "ActionReturn6.cpp"
|
|
#include "ActionSprint3.cpp"
|
|
|
|
const Sapphire::ScriptAPI::ScriptObject* ptrs[] =
|
|
{
|
|
static_cast< Sapphire::ScriptAPI::ScriptObject* >( new ActionReturn6 ),
|
|
static_cast< Sapphire::ScriptAPI::ScriptObject* >( new ActionSprint3 ),
|
|
|
|
nullptr
|
|
};
|
|
|
|
extern "C" EXPORT const Sapphire::ScriptAPI::ScriptObject** getScripts()
|
|
{
|
|
return ptrs;
|
|
}
|