Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
19 lines
504 B
TypeScript
19 lines
504 B
TypeScript
import { Engine } from '/Scripts/engine/engine-interface'
|
|
import { loggerScripts } from '/Scripts/compiler/host_access'
|
|
import { Client, NamespaceClient } from '/Scripts/client/client'
|
|
|
|
//the core engine
|
|
let engine: Engine
|
|
|
|
/**
|
|
* Called when the script engine first initializes
|
|
*/
|
|
export const ENGINE_onInit = () => {
|
|
loggerScripts.INFO('Script Engine Beginning Initialization')
|
|
|
|
//load namespaces
|
|
let client: NamespaceClient = Client
|
|
|
|
loggerScripts.INFO('Script Engine Initialized')
|
|
}
|