18 lines
204 B
C++

namespace Core
{
struct Vec2
{
float x;
float y;
};
struct Vec3
{
float x;
float y;
float z;
float w = 1;
};
} // namespace Core