Archeus 0.0.0
A C library and game engine that focuses on documentation
Loading...
Searching...
No Matches
line.c
Go to the documentation of this file.
1#ifdef ARC_NONE_GRAPHICS
2
3#include "arc/graphics/line.h"
4#include <stdio.h>
5
6void ARC_Line_Render(int32_t *x1, int32_t *y1, int32_t *x2, int32_t *y2, ARC_Renderer *renderer, ARC_Color *color){
7 printf("No Graphics Backend Selected\n");
8}
9
10#endif // !ARC_NONE_GRAPHICS
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