mirror of https://github.com/PrimeDecomp/prime.git
14 lines
146 B
C++
14 lines
146 B
C++
|
#ifndef _CQUATERNION_HPP
|
||
|
#define _CQUATERNION_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
class CQuaternion {
|
||
|
private:
|
||
|
f32 w;
|
||
|
f32 x;
|
||
|
f32 y;
|
||
|
f32 z;
|
||
|
};
|
||
|
|
||
|
#endif
|