MegaMan.Editor.Bll.Tools.TileBrushToolBehavior.Draw C# (CSharp) Method

Draw() private method

private Draw ( ScreenDocument screen, int tile_x, int tile_y ) : void
screen ScreenDocument
tile_x int
tile_y int
return void
        private void Draw(ScreenDocument screen, int tile_x, int tile_y)
        {
            var changed = _brush.DrawOn(screen, tile_x, tile_y);
            changes.AddRange(changed);
        }