add some Main functions so it compiles

This commit is contained in:
moonheart08 2020-09-30 22:21:51 -05:00
parent 16fdf57787
commit 5bec4a5921
7 changed files with 228 additions and 1 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);
}
}
}