コード例 #1
0
 public bool ValidateTarget(Tile targetTile)
 {
     return(TargetValidatorService.Validate(Board.GetHeroById(CasterId), targetTile, this.TargetType));
 }
コード例 #2
0
ファイル: BaseEffect.cs プロジェクト: TRushton95/Manabind
 protected bool ValidateTarget(BaseTile targetTile)
 {
     return(TargetValidatorService.Validate(this.Caster, targetTile, TargetType));
 }