Renderer/src/main/java/electrosphere/engine/loadingthreads/EngineInitLoading.java
austin 53a0e0df1b
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
disable anime outline + async script loading
2024-08-24 11:19:51 -04:00

18 lines
404 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.init();
}
}