mirror of https://github.com/PrimeDecomp/prime.git
17 lines
233 B
C++
17 lines
233 B
C++
|
#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
|