A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KartModel.hh
1#pragma once
2
3#include "game/kart/KartObjectProxy.hh"
4
6namespace Render {
7
10public:
11 KartModel();
12 virtual ~KartModel();
13
14 virtual void vf_1c();
15
16 void init();
17 void calc();
18
19 void FUN_807CB198();
20 void FUN_807CB530();
21 void FUN_807C7828(u8 playerIdx, bool isBike);
22
23private:
24 bool m_somethingLeft;
25 bool m_somethingRight;
26 f32 _54;
27 f32 _58;
28 f32 _5c;
29 f32 _64;
30 bool m_isInsideDrift;
31 f32 _2e8;
32};
33
34class KartModelKart : public KartModel {
35public:
38};
39
40class KartModelBike : public KartModel {
41public:
44};
45
46} // namespace Render
Base class for most kart-related objects.
Included in Kinoko because it mysteriously sets an angle member variable in KartBody.
Definition KartModel.hh:9
void FUN_807C7828(u8 playerIdx, bool isBike)
Definition KartModel.cc:162
Pertains to rendering the kart model.