2018-03-07 08:14:42 +01:00
|
|
|
#include <Script/NativeScriptApi.h>
|
2023-02-07 06:39:42 +09:00
|
|
|
#include <Service.h>
|
2018-03-07 08:14:42 +01:00
|
|
|
|
|
|
|
@ScriptIncludes@
|
|
|
|
|
2018-11-13 21:34:44 +11:00
|
|
|
const Sapphire::ScriptAPI::ScriptObject* ptrs[] =
|
2018-03-07 08:14:42 +01:00
|
|
|
{
|
|
|
|
@ScriptNames@
|
|
|
|
nullptr
|
|
|
|
};
|
|
|
|
|
2023-02-07 06:39:42 +09:00
|
|
|
extern "C" EXPORT const Sapphire::ScriptAPI::ScriptObject** getScripts( Sapphire::Common::ServiceContainer* pSc )
|
2018-03-07 08:14:42 +01:00
|
|
|
{
|
2023-02-07 06:39:42 +09:00
|
|
|
Sapphire::Common::ServiceContainer::pSvcContainer = pSc;
|
2018-03-07 08:14:42 +01:00
|
|
|
return ptrs;
|
|
|
|
}
|