PingComponent.cs 193 B

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