OuterMessageStatisticComponent.cs 292 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ET
  4. {
  5. public class OuterMessageStatisticComponent: Entity
  6. {
  7. public long LastCheckTime;
  8. public int MessageCountPerSec;
  9. public Dictionary<Type, int> MessageTypeCount = new Dictionary<Type, int>();
  10. }
  11. }