Files
Ragon/Game/Program.cs
T

18 lines
316 B
C#
Raw Normal View History

2022-04-30 08:20:17 +04:00
using System;
2022-04-24 09:05:15 +04:00
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();
}
}
}