11 lines
347 B
C#
11 lines
347 B
C#
// See https://aka.ms/new-console-template for more information
|
|
|
|
using BlueWest.Core;
|
|
using BlueWest.Tools;
|
|
|
|
EventManager EventManager = new EventManager(new Dictionary<Type, List<EventListenerBase>>(10000));
|
|
ThreadServer _threadServer;
|
|
|
|
System.Threading.Thread.Sleep(2500);
|
|
_threadServer = new ThreadServer(EventManager);
|
|
_threadServer.Init(); |