Files
omath/include/omath/ViewAngles.hpp
さくらみこ 193e87847a fixup
2024-12-17 07:24:44 +03:00

18 lines
286 B
C++

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