mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 19:02:21 +01:00
Add project files.
This commit is contained in:
20
Project Reboot 3.0/Quat.h
Normal file
20
Project Reboot 3.0/Quat.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user