renamed headers

This commit is contained in:
Vladislav Alpatov
2025-03-21 04:17:42 +03:00
parent 35658b1f6d
commit b9ac44a901
23 changed files with 18 additions and 18 deletions

View File

@@ -0,0 +1,15 @@
//
// 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;
};
}