Misc fixes (#2860)

* Misc matches

* Remove more old dol2asm stuff

* Remove dCcS::SetMass-related fakematches

No longer necessary with the PCH for some reason.

* Use attention types enum in more places

* Remove more dol2asm stuff

* Clean up matDL_dis.py
This commit is contained in:
LagoLunatic
2025-11-25 11:32:34 -05:00
committed by GitHub
parent b46885816c
commit 1420aa0d0d
156 changed files with 209 additions and 594 deletions
+5 -24
View File
@@ -8,25 +8,6 @@
#include "d/actor/d_a_npc_mk.h"
#include "dol2asm.h"
//
// Forward References:
//
extern "C" static bool daNpc_Mk_Create__FPv();
extern "C" static bool daNpc_Mk_Delete__FPv();
extern "C" static bool daNpc_Mk_Execute__FPv();
extern "C" static bool daNpc_Mk_Draw__FPv();
extern "C" static bool daNpc_Mk_IsDelete__FPv();
//
// External References:
//
//
// Declarations:
//
/* 80A73DD8-80A73DE0 000078 0008+00 1/0 0/0 0/0 .text daNpc_Mk_Create__FPv */
static bool daNpc_Mk_Create(void* param_0) {
return true;
@@ -55,11 +36,11 @@ static bool daNpc_Mk_IsDelete(void* param_0) {
/* ############################################################################################## */
/* 80A73E08-80A73E28 -00001 0020+00 1/0 0/0 0/0 .data daNpc_Mk_MethodTable */
static actor_method_class daNpc_Mk_MethodTable = {
(process_method_func)daNpc_Mk_Create__FPv,
(process_method_func)daNpc_Mk_Delete__FPv,
(process_method_func)daNpc_Mk_Execute__FPv,
(process_method_func)daNpc_Mk_IsDelete__FPv,
(process_method_func)daNpc_Mk_Draw__FPv,
(process_method_func)daNpc_Mk_Create,
(process_method_func)daNpc_Mk_Delete,
(process_method_func)daNpc_Mk_Execute,
(process_method_func)daNpc_Mk_IsDelete,
(process_method_func)daNpc_Mk_Draw,
};
/* 80A73E28-80A73E58 -00001 0030+00 0/0 0/0 1/0 .data g_profile_NPC_MK */