diff --git a/allegro5/primitives.go b/allegro5/primitives.go index 5c46f2b..51fe59a 100644 --- a/allegro5/primitives.go +++ b/allegro5/primitives.go @@ -7,3 +7,11 @@ import "C" func DrawLine(x1, y1, x2, y2 float32, c Color, thickness float32) { C.al_draw_line(C.float(x1), C.float(y1), C.float(x2), C.float(y2), c.color, C.float(thickness)) } + +func DrawRectangle(x1, y1, x2, y2 float32, c Color, thickness float32) { + C.al_draw_rectangle(C.float(x1), C.float(y1), C.float(x2), C.float(y2), c.color, C.float(thickness)) +} + +func DrawFilledRectangle(x1, y1, x2, y2 float32, c Color) { + C.al_draw_filled_rectangle(C.float(x1), C.float(y1), C.float(x2), C.float(y2), c.color) +}