Program.cs 257 B

12345678910111213
  1. using ENetTest;
  2. namespace ENetExe
  3. {
  4. internal static class Program
  5. {
  6. private static void Main(string[] args)
  7. {
  8. var test = new ENetClientServerTest();
  9. test.ClientSendToServer();
  10. }
  11. }
  12. }