GlobalActivityComponent.cs 637 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. //全局活动组件
  5. public class GlobalActivityComponent : Entity, IAwake, IUpdate, IConfigHotLoad
  6. {
  7. //下一个重置时间--凌晨5点
  8. public long ReLoadCfgSec = 0L;
  9. public Dictionary<int, ActivityCfgInfo> activityCfgInfos = new Dictionary<int, ActivityCfgInfo>();
  10. //活动接取类型对应的活动id
  11. public Dictionary<int, List<int>> activityCfgInfosByType = new Dictionary<int, List<int>>();
  12. public Queue<List<int>> timerQueue = new Queue<List<int>>();
  13. public Queue<long> timeIds = new Queue<long>();
  14. }
  15. }