FuncWorks.XNA.XTiled.Map.GetObjectsInRegion C# (CSharp) Метод

GetObjectsInRegion() публичный Метод

Returns a collection of MapObjects inside the given region
public GetObjectsInRegion ( Rectangle region ) : IEnumerable
region Microsoft.Xna.Framework.Rectangle The region, in pixles, to check
Результат IEnumerable
        public IEnumerable<MapObject> GetObjectsInRegion(Rectangle region)
        {
            return this.GetObjectsInRegion(ref region);
        }

Same methods

Map::GetObjectsInRegion ( Int32 objectLayerID, Rectangle region ) : IEnumerable