Files
Ragon/Game/Program.cs
T
2022-04-30 08:20:17 +04:00

18 lines
316 B
C#
Executable File

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();
}
}
}