PingComponent.cs 206 B

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