Update template to use the latest RobustToolbox version.

This commit is contained in:
Vera Aguilera Puerto 2021-04-23 20:40:47 +02:00
parent 5377dce401
commit 107d0ac16b
7 changed files with 43 additions and 3 deletions

View file

@ -4,6 +4,14 @@ namespace Content.Server
{
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.
ContentStart.StartLibrary(args);
*/
}
}
}