10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
|
|
/**
|
|
* The host context that contains the core engine functions
|
|
*/
|
|
export let HOST = {
|
|
classes: { }, //the classes available to the script engine
|
|
singletons: { }, //the singletons available to the script engine
|
|
}
|
|
|