mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-05 17:15:53 +00:00
17 lines
225 B
C++
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 |