1
0
mirror of https://github.com/lidgren/lidgren-network-gen3.git synced 2026-05-15 22:56:30 +09:00

Samples fixed for namechange Endpoint -> EndPoint

This commit is contained in:
lidgren
2012-07-19 22:41:09 +00:00
parent f09e384fdb
commit 29bd071d0d
5 changed files with 7 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ namespace UnconnectedSample
MainForm.richTextBox1.AppendText(im.ReadString() + Environment.NewLine);
break;
case NetIncomingMessageType.UnconnectedData:
MainForm.richTextBox1.AppendText("Received from " + im.SenderEndpoint + ": " + im.ReadString() + Environment.NewLine);
MainForm.richTextBox1.AppendText("Received from " + im.SenderEndPoint + ": " + im.ReadString() + Environment.NewLine);
Peer.Recycle(im);
break;
}