A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
DrawMdl.hh
1#pragma once
2
3#include "game/render/AnmMgr.hh"
4
5namespace Render {
6
7class DrawMdl {
8public:
9 DrawMdl() : m_anmMgr(nullptr) {}
10
11 void linkAnims(size_t idx, const Abstract::g3d::ResFile *resFile, const char *name,
12 AnmType anmType);
13
14 [[nodiscard]] AnmMgr *anmMgr() {
15 return m_anmMgr;
16 }
17
18private:
19 AnmMgr *m_anmMgr;
20};
21
22} // namespace Render
Represents a binary resource file which contains object models, textures, and animations.
Definition ResFile.hh:15
Pertains to rendering the kart model.