1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-30 16:17:46 +00:00
sapphire/src/scripts/ScriptLoader.cpp.in

17 lines
351 B
C++
Raw Normal View History

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