mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-11-14 19:13:01 +01:00
13 lines
169 B
C++
13 lines
169 B
C++
|
#pragma once
|
||
|
|
||
|
namespace MM::Components {
|
||
|
|
||
|
struct ViewDir3D {
|
||
|
float yaw = 0.f; // rad
|
||
|
float pitch = 0.f; // rad
|
||
|
float roll = 0.f; // rad
|
||
|
};
|
||
|
|
||
|
} // MM::Components
|
||
|
|