Update template to latest RobustToolbox version.

This commit is contained in:
Vera Aguilera Puerto 2021-08-31 23:01:31 +02:00
parent a70054ac44
commit b417f4355e
4 changed files with 18 additions and 6 deletions

View file

@ -1,4 +1,5 @@
using Robust.Client;
using Robust.Shared.Utility;
namespace Content.Client
{
@ -9,15 +10,18 @@ namespace Content.Client
ContentStart.Start(args);
/*
// DEVNOTE: If you want to use RobustToolbox as a library, use the method below instead.
// Keep in mind, this will make your game ineligible from appearing on the SS14 hub, specially if you
// disable sandboxing.
// DEVNOTE: If you want to use RobustToolbox as a library, use the method below instead.
// Keep in mind, this will make your game ineligible from appearing on the SS14 hub, specially if you
// disable sandboxing.
ContentStart.StartLibrary(args, new GameControllerOptions()
{
// DEVNOTE: Your options here.
Sandboxing = false,
});
*/
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"),
DefaultWindowTitle = "Robust Template"
});*/
}
}
}