* Initial M3d Pass
* `m_bmdl` and `m_bline` left

---------

Co-authored-by: elijah-thomas774 <elijahthomas774@gmail.com>
Co-authored-by: Elijah Thomas <42302100+elijah-thomas774@users.noreply.github.com>
This commit is contained in:
robojumper
2024-09-12 22:36:34 +02:00
committed by GitHub
parent e2c4bb7be7
commit 1180e1f486
150 changed files with 5890 additions and 818 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef M3D_M_ANMVIS_H
#define M3D_M_ANMVIS_H
#include <m/m3d/m_bmdl.h>
#include <m/m3d/m_fanm.h>
namespace m3d {
class anmVis_c : public fanm_c {
public:
virtual ~anmVis_c();
virtual int getType() const override;
bool create(nw4r::g3d::ResMdl, nw4r::g3d::ResAnmVis, mAllocator_c *, u32 *);
void setAnm(m3d::bmdl_c &, nw4r::g3d::ResAnmVis, m3d::playMode_e);
void setFrmCtrlDefault(nw4r::g3d::ResAnmVis &, m3d::playMode_e);
};
} // namespace m3d
#endif