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:
parent
14282e0b5d
commit
ed67934548
17 changed files with 122 additions and 12 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue