Ejemplo n.º 1
0
 public CastSpell(IPlayerModel player, ISpellModel spell, Coord coord)
     : base(player, EActionType.CastSpell)
 {
     Spell = spell;
     Coord = coord;
 }
Ejemplo n.º 2
0
 public CastSpell(IPlayerModel player, ISpellModel spell, IPieceAgent target)
     : base(player, EActionType.CastSpell)
 {
     Spell  = spell;
     Target = target;
 }