2022-04-30 08:20:17 +04:00
|
|
|
using System;
|
2022-04-24 09:05:15 +04:00
|
|
|
using Game.Source;
|
|
|
|
|
using Ragon.Core;
|
|
|
|
|
|
2022-05-14 10:35:17 +04:00
|
|
|
namespace SimpleServer
|
2022-04-24 09:05:15 +04:00
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
var bootstrap = new Bootstrap();
|
2022-06-23 20:45:41 +04:00
|
|
|
var app = bootstrap.Configure(new SimplePluginFactory());
|
|
|
|
|
app.Start();
|
2022-04-24 09:05:15 +04:00
|
|
|
Console.Read();
|
2022-06-23 20:45:41 +04:00
|
|
|
app.Stop();
|
2022-04-24 09:05:15 +04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|