Files
omath/include/omath/view_angles.hpp
2025-05-03 20:31:59 +03:00

16 lines
260 B
C++

//
// Created by Orange on 11/30/2024.
//
#pragma once
namespace omath
{
template<class PitchType, class YawType, class RollType>
struct ViewAngles
{
PitchType pitch;
YawType yaw;
RollType roll;
};
} // namespace omath