21 lines
No EOL
464 B
C
21 lines
No EOL
464 B
C
#ifndef ARC_GRAPHICS_OBROUND_H_
|
|
#define ARC_GRAPHICS_OBROUND_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "arc/graphics/color.h"
|
|
#include "arc/graphics/renderer.h"
|
|
#include "arc/math/obround.h"
|
|
#include <stdint.h>
|
|
|
|
void ARC_Obround_Render(ARC_Obround *obround, ARC_Renderer *renderer, ARC_Color *color);
|
|
|
|
// void ARC_Rect_RenderFill(ARC_Rect *rect, ARC_Renderer *renderer, ARC_Color *color);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !ARC_GRAPHICS_OBROUND_H_
|