25 lines
500 B
C#
25 lines
500 B
C#
using Articulate_Network;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MIT_Master_Server
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Server server = new Server();
|
|
|
|
server.Start("127.0.0.1", 50).ContinueWith(t =>
|
|
{
|
|
Console.WriteLine($"Server listening on port 50");
|
|
});
|
|
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|