Renderer/src/main/java/electrosphere/engine/loadingthreads/EngineInitLoading.java
2025-05-15 16:42:06 -04:00

18 lines
423 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.engineState.scriptEngine.initScripts();
}
}