Archeus 0.0.0
A C library and game engine that focuses on documentation
Loading...
Searching...
No Matches
line.h
Go to the documentation of this file.
1#ifndef ARC_GRAPHICS_LINE_H_
2#define ARC_GRAPHICS_LINE_H_
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
10#include "arc/math/rectangle.h"
11#include <stdint.h>
12
13void ARC_Line_Render(int32_t *x1, int32_t *y1, int32_t *x2, int32_t *y2, ARC_Renderer *renderer, ARC_Color *color);
14
15#ifdef __cplusplus
16}
17#endif
18
19#endif // !ARC_GRAPHICS_LINE_H_
void ARC_Line_Render(int32_t *x1, int32_t *y1, int32_t *x2, int32_t *y2, ARC_Renderer *renderer, ARC_Color *color)
struct ARC_RendererType ARC_Renderer
Definition renderer.h:16