light/modules/math/public/components/transform.hpp
light7734 311b20bdf2
Some checks are pending
continuous-integration/drone/push Build is running
refactor: adjust for recent logger changes
2025-11-01 03:10:33 +03:30

16 lines
201 B
C++

#pragma once
#include <math/vec3.hpp>
namespace lt::math::components {
struct Transform
{
math::vec3 translation;
math::vec3 scale;
math::vec3 rotation;
};
} // namespace lt::math::components