Files
Reboot-Launcher/dependencies/reboot/Project Reboot 3.0/Quat.h
Alessandro Autiero b41e22adeb <feat: New project structure>
<feat: New release>
2023-09-02 15:34:15 +02:00

22 lines
301 B
C++

#pragma once
#include "inc.h"
MS_ALIGN(16) struct FQuat
{
public:
/** The quaternion's X-component. */
float X;
/** The quaternion's Y-component. */
float Y;
/** The quaternion's Z-component. */
float Z;
/** The quaternion's W-component. */
float W;
struct FRotator Rotator() const;
};