Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
18 lines
404 B
Java
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();
|
|
}
|
|
|
|
}
|