コード例 #1
0
ファイル: CastSpell.cs プロジェクト: dharry1968/CardChess
 public CastSpell(IPlayerModel player, ISpellModel spell, Coord coord)
     : base(player, EActionType.CastSpell)
 {
     Spell = spell;
     Coord = coord;
 }
コード例 #2
0
ファイル: CastSpell.cs プロジェクト: dharry1968/CardChess
 public CastSpell(IPlayerModel player, ISpellModel spell, IPieceAgent target)
     : base(player, EActionType.CastSpell)
 {
     Spell  = spell;
     Target = target;
 }