wip
This commit is contained in:
Executable
+18
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user