PingComponent.cs 241 B

1234567891011
  1. namespace ET.Client
  2. {
  3. [ComponentOf(typeof(Session))]
  4. public class PingComponent: Entity, IAwake, IDestroy
  5. {
  6. [NoMemoryCheck]
  7. public C2G_Ping C2G_Ping = new C2G_Ping();
  8. public long Ping; //延迟值
  9. }
  10. }