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