MegaMan.Editor.Bll.ScreenDocument.ResizeTopLeft C# (CSharp) Method

ResizeTopLeft() public method

public ResizeTopLeft ( int width, int height ) : void
width int
height int
return void
        public void ResizeTopLeft(int width, int height)
        {
            screen.Layers[0].Tiles.ResizeTopLeft(width, height);
            Dirty = true;
            if (Resized != null) Resized(width, height);
        }