mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-16 11:37:00 +00:00
Start matching CScriptPlatform; more CScriptMazeNode
Former-commit-id: 135d63412c
This commit is contained in:
17
include/Kyoto/Math/CNUQuaternion.hpp
Normal file
17
include/Kyoto/Math/CNUQuaternion.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef _CNUQUATERNION_HPP
|
||||
#define _CNUQUATERNION_HPP
|
||||
|
||||
#include "types.h"
|
||||
|
||||
class CNUQuaternion {
|
||||
public:
|
||||
CNUQuaternion(f32 w, f32 x, f32 y, f32 z) : w(w), x(x), y(y), z(z) {}
|
||||
|
||||
private:
|
||||
f32 w;
|
||||
f32 x;
|
||||
f32 y;
|
||||
f32 z;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user