Program.cs 212 B

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