HeartBeatTimeoutComponent.cs 171 B

12345678
  1. namespace ET.Server
  2. {
  3. [ComponentOf(typeof (Session))]
  4. public class HeartBeatTimeoutComponent: Entity, IAwake, IDestroy
  5. {
  6. public long Timer;
  7. }
  8. }