PingComponent.cs 165 B

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