Files
Ragon/Ragon.SimpleServer/Program.cs
T
2022-10-22 21:34:35 +04:00

19 lines
384 B
C#
Executable File

using System;
using System.Threading;
using Game.Source;
using Ragon.Core;
namespace SimpleServer
{
class Program
{
static void Main(string[] args)
{
var bootstrap = new Bootstrap();
var app = bootstrap.Configure(new SimplePluginFactory());
app.Start();
Console.Read();
app.Stop();
}
}
}