mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-30 08:07:46 +00:00
16 lines
351 B
C++
16 lines
351 B
C++
#include <Script/NativeScriptApi.h>
|
|
#include <Service.h>
|
|
|
|
@ScriptIncludes@
|
|
|
|
const Sapphire::ScriptAPI::ScriptObject* ptrs[] =
|
|
{
|
|
@ScriptNames@
|
|
nullptr
|
|
};
|
|
|
|
extern "C" EXPORT const Sapphire::ScriptAPI::ScriptObject** getScripts( Sapphire::Common::ServiceContainer* pSc )
|
|
{
|
|
Sapphire::Common::ServiceContainer::pSvcContainer = pSc;
|
|
return ptrs;
|
|
}
|