Renderer/assets/Scripts/engine/engine-interface.ts
austin 94c19d7990
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
scripting work
2024-07-10 15:27:05 -04:00

10 lines
227 B
TypeScript

/**
* The host context that contains all core engine functions
*/
export interface Engine {
classes: any, //the host's view of the scripting engine
singletons: any, //the singletons available to the script engine
}