RouterAddressComponent.cs 297 B

12345678910111213
  1. using System.Collections.Generic;
  2. using System.Net;
  3. namespace ET
  4. {
  5. [ComponentOf(typeof(Scene))]
  6. public class RouterAddressComponent: Entity, IAwake<string>
  7. {
  8. public string RouterManagerAddress;
  9. public HttpGetRouterResponse Info;
  10. public int RouterIndex;
  11. }
  12. }