Ejemplo n.º 1
0
 }                                               //秒杀小怪概率
 #endregion
 public BuffMgr(Player player)
 {
     m_Player  = player;
     m_BuffMap = new SafeMap <int, BaseBuff>();
     m_Action  = UpdateImp;
     //InitCampBuff();
 }
Ejemplo n.º 2
0
 public AiBuffMgr(Monster monster)
 {
     m_Monster = monster;
     m_BuffMap = new SafeMap <int, AiBaseBuff>();
     m_Action  = UpdateImp;
 }
Ejemplo n.º 3
0
 public TimerMgr()
 {
     m_TimerMap = new SafeMap <int, Timer>();
     m_Action   = TimerUpdate;
 }