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