light/modules/math/components.cppm
light7734 2b81b4376c
Some checks reported errors
continuous-integration/drone/push Build was killed
revert: feat: lsd
It was a horrible idea...
2025-11-30 09:46:48 +03:30

16 lines
219 B
C++

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