light/modules/math/components.cppm
2026-01-20 09:58:35 +03:30

17 lines
239 B
C++

export module math.components;
import preliminary;
import math.vec3;
namespace lt::math::components {
export struct Transform
{
math::vec3 translation;
math::vec3 scale;
math::vec3 rotation;
};
} // namespace lt::math::components