This commit is contained in:
2022-06-23 20:45:41 +04:00
parent 04b1b16b11
commit 05c8904601
47 changed files with 781 additions and 715 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
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();
}
}
}