RouterAddressComponent.cs 432 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using System.Net;
  3. using System.Net.Sockets;
  4. namespace ET.Client
  5. {
  6. [ComponentOf(typeof(Scene))]
  7. public class RouterAddressComponent: Entity, IAwake<string, int>
  8. {
  9. public IPAddress RouterManagerIPAddress { get; set; }
  10. public string RouterManagerHost;
  11. public int RouterManagerPort;
  12. public HttpGetRouterResponse Info;
  13. public int RouterIndex;
  14. }
  15. }