robust-toolbox-template/Content.Server/Program.cs
2021-07-04 21:59:49 +02:00

21 lines
No EOL
523 B
C#

using Robust.Server;
namespace Content.Server
{
internal static class Program
{
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, new ServerOptions()
{
// DEVNOTE: Your options here.
Sandboxing = false,
});
*/
}
}
}