Files
Project-Reboot-3.0/Project Reboot 3.0/Rotator.h
2023-03-04 15:06:07 -05:00

12 lines
114 B
C

#pragma once
#include "Quat.h"
struct FRotator
{
float Pitch;
float Yaw;
float Roll;
FQuat Quaternion();
};