fixed rectangles layout

This commit is contained in:
herbglitch 2023-01-03 19:21:57 -07:00
parent ba4a36ffe5
commit 0bbce28469
3 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,19 @@
#ifndef ARC_GRAPHICS_RECT_H_
#define ARC_GRAPHICS_RECT_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "arc/graphics/color.h"
#include "arc/graphics/renderer.h"
#include "arc/math/rectangle.h"
#include <stdint.h>
void ARC_Rect_Render(ARC_Rect *rect, ARC_Renderer *renderer, ARC_Color *color);
#ifdef __cplusplus
}
#endif
#endif // !ARC_GRAPHICS_RECT_H_