Thread shutdown is now more stable, extensive logging of engine startup and shut down, Icon to be displayed in the software, path must be in resources but can be configured in properties file

This commit is contained in:
Harrison Corlett 2026-01-23 09:26:29 +00:00
parent 14282e0b5d
commit ed67934548
17 changed files with 122 additions and 12 deletions

View file

@ -1,5 +1,6 @@
package net.halbear.Executable;
import net.halbear.Terrain4J.EngineCore.Logic.EngineConfig;
import net.halbear.Terrain4J.EngineCore.Main.GameCore;
import net.halbear.Terrain4J.EngineCore.Main.PrimaryRuntime;
import org.tinylog.Logger;
@ -7,7 +8,7 @@ import org.tinylog.Logger;
public class Init {
public static void main(String[] args){
Logger.info("\nLaunching New Terrain4J Powered Software!");
var GameEngine = new PrimaryRuntime("Terrain4J", new GameCore());
var GameEngine = new PrimaryRuntime(EngineConfig.getInstance().GetSoftwareName(), new GameCore());
Logger.info("Launched Terrain4J Engine");
GameEngine.run();
}