Files
Ragon/SimpleServer/Program.cs
T

17 lines
314 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 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-05-14 10:35:17 +04:00
bootstrap.Configure(new SimplePluginFactory());
2022-04-24 09:05:15 +04:00
Console.Read();
}
}
}