100% m_state.cpp

This commit is contained in:
Sean Miller
2026-04-08 17:40:43 +01:00
parent 5083d2031c
commit 872975212d
4 changed files with 33 additions and 5 deletions
+4 -4
View File
@@ -17687,10 +17687,10 @@ __sinit_\m_shadow_cpp = .text:0x802EDF20; // type:function size:0xC scope:local
__ct__Q23m3d6smdl_cFv = .text:0x802EDF30; // type:function size:0x4C
__dt__Q23m3d6smdl_cFv = .text:0x802EDF80; // type:function size:0x58
create__Q23m3d6smdl_cFQ34nw4r3g3d6ResMdlP12mAllocator_cUliPUl = .text:0x802EDFE0; // type:function size:0xB4
fn_802EE0A0 = .text:0x802EE0A0; // type:function size:0x4
fn_802EE0B0 = .text:0x802EE0B0; // type:function size:0x4
fn_802EE0C0 = .text:0x802EE0C0; // type:function size:0x4
fn_802EE0D0 = .text:0x802EE0D0; // type:function size:0x8
fn_802EE0A0__Fv = .text:0x802EE0A0; // type:function size:0x4
fn_802EE0B0__Fv = .text:0x802EE0B0; // type:function size:0x4
fn_802EE0C0__Fv = .text:0x802EE0C0; // type:function size:0x4
fn_802EE0D0__Fv = .text:0x802EE0D0; // type:function size:0x8
__ct__12mAllocator_cFv = .text:0x802EE0E0; // type:function size:0x44
__dt__12mAllocator_cFv = .text:0x802EE130; // type:function size:0x58
attach__12mAllocator_cFPQ23EGG4Heapi = .text:0x802EE190; // type:function size:0x50
+1 -1
View File
@@ -878,7 +878,7 @@ config.libs = [
Object(NonMatching, "m/m3d/m_shadow.cpp"),
Object(Matching, "m/m3d/m_scnleaf.cpp"),
Object(Matching, "m/m3d/m_smdl.cpp"),
Object(NonMatching, "m/m3d/m_state.cpp"),
Object(Matching, "m/m3d/m_state.cpp"),
Object(Matching, "m/m2d.cpp"),
Object(Matching, "m/m_allocator.cpp"),
Object(Matching, "m/m_angle.cpp"),
+17
View File
@@ -0,0 +1,17 @@
#ifndef M3D_M_STATE_H
#define M3D_M_STATE_H
namespace m3d {
namespace mState {
void fn_802EE0A0();
void fn_802EE0B0();
void fn_802EE0C0();
bool fn_802EE0D0();
} // namespace mState
} // namespace m3d
#endif // M3D_M_STATE_H
+11
View File
@@ -0,0 +1,11 @@
#include "m/m3d/m_state.h"
void fn_802EE0A0() {}
void fn_802EE0B0() {}
void fn_802EE0C0() {}
bool fn_802EE0D0() {
return true;
}