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

View file

@ -0,0 +1,14 @@
#ifdef ARC_NONE_WINDOW
#include "arc/graphics/window.h"
#include <stdio.h>
void ARC_Window_Create(ARC_Window **window, ARC_WindowInfo *info){
printf("No Window Backend Selected\n");
}
void ARC_Window_Destroy(ARC_Window *window){
printf("No Window Backend Selected\n");
}
#endif // !ARC_NONE_WINDOW