Add project files.
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user