fixed rectangles layout
This commit is contained in:
parent
ba4a36ffe5
commit
0bbce28469
3 changed files with 48 additions and 0 deletions
19
include/arc/graphics/rectangle.h
Normal file
19
include/arc/graphics/rectangle.h
Normal 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_
|
||||
Loading…
Add table
Add a link
Reference in a new issue