Renderer/assets/Scripts/engine/engine-interface.ts
austin 068f3979b8
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
hookmanager in scriptengine, upgrade to junit 5
2024-07-12 17:56:23 -04:00

25 lines
437 B
TypeScript

import { HookManager } from "/Scripts/engine/hook-manager";
/**
* The host context that contains all core engine functions
*/
export interface Engine {
/**
* The host's view of the scripting engine
*/
classes: any,
/**
* The singletons available to the script engine
*/
singletons: any,
/**
* Manages all script-defined hooks in the engine
*/
hookManager: HookManager,
}