Added 'Awaiting Simulator Connection' message

This commit is contained in:
Luke Else 2022-02-20 22:09:04 +00:00
parent 29f16a4d1e
commit bc977d3a89

View File

@ -36,6 +36,8 @@ using(UdpClient listener = new UdpClient(listenPort))
IPEndPoint listenEndPoint = new IPEndPoint(2130706433, listenPort); IPEndPoint listenEndPoint = new IPEndPoint(2130706433, listenPort);
while(true) while(true)
{ {
Console.WriteLine("Awaiting Simulator conenction...");
byte[] receivedData = listener.Receive(ref listenEndPoint); byte[] receivedData = listener.Receive(ref listenEndPoint);
Console.Clear(); Console.Clear();