Renderer/assets/Scripts/engine/engine-interface.ts
2024-07-02 16:14:05 -04:00

10 lines
225 B
TypeScript

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