#include 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; };