-
Notifications
You must be signed in to change notification settings - Fork 2
Main Project Simple
Muhammed İKİNCİ edited this page Sep 9, 2017
·
2 revisions
using System;
using FuzzyCore.Server;
using FuzzyCore.Database;
using FuzzyCore.Database.Models;
using System.Net;
namespace TT
{
class Program
{
static void Main(string[] args)
{
ConsoleMessage message = new ConsoleMessage();
FuzzyServer Server = new FuzzyServer(new IPEndPoint(IPAddress.Any, 222));
Server.startListen();
if (Server.socketState)
{
message.Write("Listening 127.0.0.1:222", ConsoleMessage.MessageType.PROCESS);
}
Console.ReadLine();
}
}
}