コード例 #1
0
 protected void FillRect(SpriteBatch spriteBatch, Rectangle rect, Color color)
 {
     RectRenderer.Fill(spriteBatch, rect, color);
 }
コード例 #2
0
 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);
 }