mirror of
https://github.com/space-wizards/RobustToolboxTemplate.git
synced 2026-02-10 16:24:49 -05:00
Update template to use the latest RobustToolbox version.
This commit is contained in:
parent
5377dce401
commit
107d0ac16b
7 changed files with 43 additions and 3 deletions
|
|
@ -4,6 +4,20 @@ namespace Content.Client
|
|||
{
|
||||
internal static class Program
|
||||
{
|
||||
public static void Main(string[] args) => ContentStart.Start(args);
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
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.
|
||||
ContentStart.StartLibrary(args, new GameControllerOptions()
|
||||
{
|
||||
// DEVNOTE: Your options here.
|
||||
Sandboxing = false,
|
||||
});
|
||||
*/
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue