Files
Project-Reboot-3.0/Project Reboot 3.0/Rotator.h
2023-03-26 21:37:47 -04:00

15 lines
160 B
C

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