prime/include/Kyoto/Math/CQuaternion.hpp
Luke Street f7f0a8e140 More defs for CStateManagerContainer & friends
Former-commit-id: 04a7213fa7e2d7fd90653133ff4ea2764c0f29d5
2022-08-12 22:48:34 -04:00

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