Beispiel #1
0
 public void CheckNotify()
 {
     if (Level > 1)
     {
         Weapon.CheckNotify(Level);
         Armor.CheckNotify(Level);
         IsNotify = AvailableSkillEnchant || Weapon.IsNotify || Armor.IsNotify;
     }
     else
     {
         IsNotify = false;
     }
 }