light/modules/math/components.cppm
light7734 1df42cf30d
Some checks reported errors
continuous-integration/drone/push Build was killed
wip: convert from include style to module import style :D
2025-11-09 17:16:57 +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