Files
Project-Reboot-3.0/Project Reboot 3.0/Quat.h
Milxnor 58bd340501 idek
remove s18+ storm effect, fix teams on all versions, fix a crash, fix 1.11 restarting
2023-04-23 11:04:06 -04: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;
};