You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
427 B
21 lines
427 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net;
|
|
using System.Net.Sockets;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using DataBase.Entity;
|
|
using Shared.DTO;
|
|
using System.Text.Json;
|
|
using Server;
|
|
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
PongServer server = new PongServer();
|
|
Console.WriteLine("Welcome to LeapHit Multiplayer - Server");
|
|
server.StartServer();
|
|
}
|
|
|
|
} |