robust-toolbox-template/Content.Server/Program.cs
2021-04-23 20:41:02 +02:00

17 lines
No EOL
391 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);
*/
}
}
}