This commit is contained in:
2022-04-24 09:05:15 +04:00
commit b26e7c1402
60 changed files with 3887 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using Game.Source;
using NetStack.Serialization;
using Ragon.Core;
namespace Game
{
class Program
{
static void Main(string[] args)
{
var bootstrap = new Bootstrap();
bootstrap.Configure(new GameFactory());
Console.Read();
}
}
}