mirror of
https://github.com/zeldaret/ss
synced 2026-06-10 12:55:12 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
15 lines
271 B
C++
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
|