Added AABB Point

This commit is contained in:
2021-08-17 08:25:20 -07:00
parent e426ca69f0
commit 1b90e20187
20 changed files with 310 additions and 55 deletions

View File

@ -16,6 +16,7 @@
#endif
#if SETTING_PLATFORM == SETTING_PLATFORM_GLFW
#include <GLFW/glfw3.h>
#elif SETTING_PLATFORM == SETTING_PLATFORM_SDL
#include <SDL2/SDL.h>
#include <SDL2/SDL_opengl.h>
@ -41,6 +42,7 @@
#include <stdbool.h>
#include <malloc.h>
#include <string.h>
#include <math.h>
#if defined(_WIN32) || defined(_WIN64)
// Windows Fixes
@ -48,5 +50,4 @@
# define sleep(n) _sleep(n)
#else
#include <unistd.h>
#include <math.h>
#endif