Compare commits

..

No commits in common. 'f87243c262efdbab4496b3ae698c0632cd711cd4' and 'd6dbc05e98c4ff53b1c92ee214c860e3204860bd' have entirely different histories.

@ -14,7 +14,7 @@ class Program
static void StartClient()
{
//IPEndPoint serverEndPoint = new IPEndPoint(Dns.GetHostAddresses("hulivet.fr").FirstOrDefault(), 3131);
IPEndPoint serverEndPoint = new IPEndPoint(IPAddress.Parse("192.168.205.58"), 3131);
IPEndPoint serverEndPoint = new IPEndPoint(IPAddress.Parse("127.0.0.1"), 3131);
UdpClient client = new UdpClient();
// Send connection message to server

@ -8,13 +8,9 @@ namespace Shared.DTO
{
public enum Action
{
Join,
Host,
Connect,
End,
SendPlayer,
RecivePlayer,
SendEntities
Join,
End
}
}

Loading…
Cancel
Save