bettola/libbettola/include/bettola/math/vec3.h

10 lines
106 B
C++

#pragma once
namespace BettolaMath {
struct Vec3 {
float x, y , z;
};
} /* namespace BettolaMath. */