FuncWorks.XNA.XTiled.Map.GetTilesInRegion C# (CSharp) Method

GetTilesInRegion() public method

Returns a collection of TileData inside the given region
public GetTilesInRegion ( Rectangle region ) : IEnumerable
region Microsoft.Xna.Framework.Rectangle The region, in pixles, to check
return IEnumerable
        public IEnumerable<TileData> GetTilesInRegion(Rectangle region)
        {
            return this.GetTilesInRegion(ref region);
        }

Same methods

Map::GetTilesInRegion ( Int32 tileLayerID, Rectangle region ) : IEnumerable