Add project files.

This commit is contained in:
2026-08-25 00:20:49 -05:00
parent 126a593d08
commit f41953c42f
94 changed files with 82513 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#include <SDL3/SDL.h>
struct _v2 {
int X;
int Y;
_v2(int x, int y) {
X = x;
Y = y;
}
};
struct Types {
using uint_32 = unsigned int;
using vec2 = _v2;
using BOOLEAN = bool;
};