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