Engine.Objects.Layer.Resize C# (CSharp) Method

Resize() public method

Resizes the field to the new size.
public Resize ( short width, short height ) : void
width short New width of the field.
height short New height of the field.
return void
        public void Resize(short width, short height)
        {
            _tiles.Resize(width, height);
        }