Content.{Client,Server} are now Exes that can be ran.

This commit is contained in:
Pieter-Jan Briers
2020-01-22 20:17:32 +01:00
parent cab3688890
commit 559367ee55
4 changed files with 36 additions and 27 deletions

12
Content.Client/Program.cs Normal file
View File

@@ -0,0 +1,12 @@
using Robust.Client;
namespace Content.Client
{
internal static class Program
{
public static void Main(string[] args)
{
ContentStart.Start(args);
}
}
}