Files
OldThink/Content.Server/Program.cs

13 lines
202 B
C#
Raw Normal View History

using Robust.Server;
namespace Content.Server
{
internal static class Program
{
public static void Main(string[] args)
{
ContentStart.Start(args);
}
}
}