diff --git a/include/omath/engines/cry_engine/traits/mesh_trait.hpp b/include/omath/engines/cry_engine/traits/mesh_trait.hpp new file mode 100644 index 0000000..200c068 --- /dev/null +++ b/include/omath/engines/cry_engine/traits/mesh_trait.hpp @@ -0,0 +1,19 @@ +// +// Created by Vladislav on 09.11.2025. +// +#pragma once +#include +#include + +namespace omath::cry_engine +{ + class MeshTrait final + { + public: + [[nodiscard]] + static Mat4X4 rotation_matrix(const ViewAngles& rotation) + { + return cry_engine::rotation_matrix(rotation); + } + }; +} // namespace omath::cry_engine \ No newline at end of file