Renderer/assets/Scripts/compiler/host_access.js
2024-07-14 16:00:35 -04:00

22 lines
471 B
JavaScript

/**
* The host context that contains the core engine functions
*/
let HOST_ACCESS = {
classes: { }, //the classes available to the script engine
singletons: { }, //the singletons available to the script engine
}
//fake require
REQUIRE_CACHE["/Scripts/compiler/host_access.js"] = {
exports: {
'HOST_ACCESS': HOST_ACCESS,
'loggerScripts': loggerScripts,
},
exportedValues: [
'HOST_ACCESS',
'loggerScripts',
],
}