mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 19:22:22 +01:00
<feat: New project structure>
<feat: New release>
This commit is contained in:
22
dependencies/reboot/Project Reboot 3.0/Quat.h
vendored
Normal file
22
dependencies/reboot/Project Reboot 3.0/Quat.h
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user