Files
ss/include/m/m_quat.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

15 lines
271 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