Renderer/src/main/java/electrosphere/engine/loadingthreads/EngineInitLoading.java
austin cc60818e35
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
js chunkgen + fixes + scriptengine work
2024-11-09 20:04:44 -05:00

18 lines
411 B
Java

package electrosphere.engine.loadingthreads;
import electrosphere.engine.Globals;
/**
* Loading routines to init different parts of the engine
*/
public class EngineInitLoading {
/**
* Loads the core assets of the scripting engine from disk and initializes the engine
*/
protected static void loadScriptingEngine(Object[] params){
Globals.scriptEngine.initScripts();
}
}