Files
omath/include/omath/view_angles.hpp
Vladislav Alpatov b9ac44a901 renamed headers
2025-03-21 04:17:42 +03:00

16 lines
241 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;
};
}