Files
ss/include/m/m_quat.h
T
robojumper 2f7ceff5b1 d_a_obj_junk_repairing OK (#27)
* d_a_obj_junk_repairing OK

* Fix rel_sieve with multi-file RELs
2024-09-15 14:54:45 -04:00

15 lines
270 B
C++

#ifndef M_QUAT_H
#define M_QUAT_H
#include <egg/math/eggQuat.h>
#include <m/m_vec.h>
class mQuat_c : public EGG::Quatf {
public:
mQuat_c() {}
mQuat_c(f32 x, f32 y, f32 z, f32 w): EGG::Quatf(w, x, y, z) {}
void fn_802F2780(const mQuat_c &other);
};
#endif