prime/include/Kyoto/Math/CQuaternion.hpp
Luke Street eb6819f1fd Continue work on CActor::UpdateAnimation; lots of headers n stuff
Former-commit-id: 85284f76408b91c78134fb192c8d3ac5cc685f99
2022-08-14 14:38:41 -04:00

17 lines
225 B
C++

#ifndef _CQUATERNION_HPP
#define _CQUATERNION_HPP
#include "types.h"
class CQuaternion {
public:
CQuaternion(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