protected void FillRect(SpriteBatch spriteBatch, Rectangle rect, Color color) { RectRenderer.Fill(spriteBatch, rect, color); }
protected void FillRect(SpriteBatch spriteBatch, int x, int y, int width, int height, Color color) { RectRenderer.Fill(spriteBatch, new Rectangle(x, y, width, height), color); }