Example #1
0
 public DKRuneSpell(uint i, ConstController.WindowsVirtualKey kb, DKSpellRuneCost c) : base(i, kb) {
     this.cost = c;
 }
Example #2
0
 public bool HasRunesFor(DKSpellRuneCost dkspc) {
     foreach (Rune r in dkspc.Costs) {
         if (!HasRune(r)) {
             return false;
         }
     }
     return true;
 }
Example #3
0
 public DKRuneSpell(uint i, DKSpellRuneCost c) : base(i) {
     this.cost = c;
 }