Gruppe22.Backend.Map.this C# (CSharp) Метод

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

Get the tile at coordinates specified by a coords-object
public this ( Coords coords ) : FloorTile
coords Coords Coordinate object specifying the tile
Результат FloorTile
        public FloorTile this[Coords coords]
        {
            get
            {
                return this[coords.x, coords.y];
            }
            set
            {
                this[coords.x, coords.y] = value;
            }
        }

Same methods

Map::this ( int x, int y ) : FloorTile