Paint.ToolBoxToolTouchBase.DrawRectangle C# (CSharp) Method

DrawRectangle() protected method

Draws the rectangle.
protected DrawRectangle ( Rectangle paintRegion, Microsoft.Xna.Framework.Color color ) : void
paintRegion Microsoft.Xna.Framework.Rectangle
color Microsoft.Xna.Framework.Color
return void
        protected void DrawRectangle(Rectangle paintRegion, Color color)
        {
            this.graphicsDisplay.DrawGraphic(ImageType.EmptySquare, paintRegion, color);
        }