19 lines
397 B
C
19 lines
397 B
C
#ifndef ARC_GRAPHICS_LINE_H_
|
|
#define ARC_GRAPHICS_LINE_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_Line_Render(int32_t *x1, int32_t *y1, int32_t *x2, int32_t *y2, ARC_Renderer *renderer, ARC_Color *color);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !ARC_GRAPHICS_LINE_H_
|