You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-16 23:26:32 +09:00
Sequence numbers now stored in dictionary per connection to enable sending the same message reliable ordered message to several connections
This commit is contained in:
@@ -27,7 +27,8 @@ namespace ChatClient
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
MainForm = new Form1();
|
||||
|
||||
Client = new NetClient(new NetPeerConfiguration("Chat"));
|
||||
NetPeerConfiguration config = new NetPeerConfiguration("Chat");
|
||||
Client = new NetClient(config);
|
||||
Client.Start();
|
||||
|
||||
Display("Type 'connect <host>' to connect to a server");
|
||||
|
||||
Reference in New Issue
Block a user