From 338a7455ac6db1ea5572915d5d6025a3057ea745 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Tue, 31 Aug 2021 23:05:41 +0200 Subject: [PATCH] Update template to latest RobustToolbox version. --- RobustToolbox | 2 +- Template.Game/EntryPoint.cs | 2 ++ Template.Game/Program.cs | 5 +++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 986ec3e..4ba5654 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 986ec3ef062bd6977cedf357c77d049e4e18a017 +Subproject commit 4ba56542531c4d810556455d2891a3ed82a53f86 diff --git a/Template.Game/EntryPoint.cs b/Template.Game/EntryPoint.cs index 60b8f3d..fb39811 100644 --- a/Template.Game/EntryPoint.cs +++ b/Template.Game/EntryPoint.cs @@ -38,6 +38,8 @@ namespace Template.Game TemplateIoC.Register(); IoCManager.BuildGraph(); + + factory.GenerateNetIds(); // DEVNOTE: This is generally where you'll be setting up the IoCManager further, like the tile manager. } diff --git a/Template.Game/Program.cs b/Template.Game/Program.cs index 4631aeb..d919722 100644 --- a/Template.Game/Program.cs +++ b/Template.Game/Program.cs @@ -31,6 +31,11 @@ namespace Template.Game // Name of the configuration file in the user's data directory. ConfigFileName = "config.toml", + //SplashLogo = new ResourcePath("/path/to/splash/logo.png"), + + // Check "RobustToolbox/Resources/Textures/Logo/icon" for an example window icon set. + //WindowIconSet = new ResourcePath("/path/to/folder/with/window/icon/set"), + // There are a few more options, be sure to check them all! }); }