struct Vector2 { float x; float y; }; // ez money rn
// generic Vector2 struct template <typename Type> struct Vector2 { Type x, y; };