From bc977d3a89914ac2e7cabc996340c03d88127d8f Mon Sep 17 00:00:00 2001 From: Luke Else Date: Sun, 20 Feb 2022 22:09:04 +0000 Subject: [PATCH] Added 'Awaiting Simulator Connection' message --- Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Program.cs b/Program.cs index 9cf8b16..184a259 100644 --- a/Program.cs +++ b/Program.cs @@ -36,6 +36,8 @@ using(UdpClient listener = new UdpClient(listenPort)) IPEndPoint listenEndPoint = new IPEndPoint(2130706433, listenPort); while(true) { + Console.WriteLine("Awaiting Simulator conenction..."); + byte[] receivedData = listener.Receive(ref listenEndPoint); Console.Clear();