diff options
| author | jacob1 <jfu614@gmail.com> | 2013-05-14 20:39:20 (GMT) |
|---|---|---|
| committer | jacob1 <jfu614@gmail.com> | 2013-05-14 20:39:20 (GMT) |
| commit | 2e409f966cbae3665ac2d6f9a9a0311f3894e3b6 (patch) | |
| tree | 23c86bdb698caea424e45809dddb0d1bee4fc066 /src/graphics/Graphics.h | |
| parent | 431f5a0083dca3da5c881e507908690ebb5a052a (diff) | |
| download | powder-2e409f966cbae3665ac2d6f9a9a0311f3894e3b6.zip powder-2e409f966cbae3665ac2d6f9a9a0311f3894e3b6.tar.gz | |
gfx.draw/fillcircle
Diffstat (limited to 'src/graphics/Graphics.h')
| -rw-r--r-- | src/graphics/Graphics.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/graphics/Graphics.h b/src/graphics/Graphics.h index 3a87bb6..2cbdd87 100644 --- a/src/graphics/Graphics.h +++ b/src/graphics/Graphics.h @@ -239,6 +239,8 @@ public: void draw_line(int x, int y, int x2, int y2, int r, int g, int b, int a); void drawrect(int x, int y, int width, int height, int r, int g, int b, int a); void fillrect(int x, int y, int width, int height, int r, int g, int b, int a); + void drawcircle(int x, int y, int rx, int ry, int r, int g, int b, int a); + void fillcircle(int x, int y, int rx, int ry, int r, int g, int b, int a); void clearrect(int x, int y, int width, int height); void gradientrect(int x, int y, int width, int height, int r, int g, int b, int a, int r2, int g2, int b2, int a2); |
