mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 03:02:22 +01:00
22 lines
301 B
C++
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;
|
|
}; |