source: Dev/LoggingTool/LoggingTool.cs

Last change on this file was 3, checked in by jkraaijeveld, 14 years ago

Commited some initial work of the LoggingTool? to this repository instead of TeamUpServer?

File size: 601 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using UDKTCPLink;
6using LoggingTool.network;
7using System.Threading;
8using LoggingTool.models;
9
10namespace LoggingTool
11{
12    class LoggingTool
13    {
14        static void Main(string[] args)
15        {
16            Server server = new Server();
17            SVData svData = new SVData();
18            server.Protocol = new SVProtocol(server, svData);
19            server.Activate();
20            while(true)
21                Thread.Sleep(1000);
22
23            //Launch Supervisor
24        }
25    }
26}
Note: See TracBrowser for help on using the repository browser.