huge core redesign

This commit is contained in:
herbglitch 2024-01-12 19:48:17 -07:00
parent 85d0bad350
commit c614c679a9
23 changed files with 457 additions and 0 deletions

10
src/graphics/none/line.c Normal file
View file

@ -0,0 +1,10 @@
#ifdef ARC_NONE_GRAPHICS
#include "arc/graphics/line.h"
#include <stdio.h>
void ARC_Line_Render(int32_t *x1, int32_t *y1, int32_t *x2, int32_t *y2, ARC_Renderer *renderer, ARC_Color *color){
printf("No Graphics Backend Selected\n");
}
#endif // !ARC_NONE_GRAPHICS