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