d_a_obj_akabe 90%

This commit is contained in:
Jasper St. Pierre
2023-11-23 18:24:21 -08:00
parent 82fd45e966
commit cfbda2c423
6 changed files with 249 additions and 84 deletions
+2
View File
@@ -169,6 +169,8 @@ public:
return &pm_tri[poly_index].m_plane;
}
void SetPriority(u8 priority) { mWallCorrectPriority = priority; }
virtual ~cBgW();
virtual u32 GetGrpToRoomIndex(int) const;
virtual void CalcPlane();
+4
View File
@@ -724,6 +724,10 @@ inline u8 dComIfGs_getItemReserve(int param_0) {
return g_dComIfG_gameInfo.save.getPlayer().getBagItem().getReserve(param_0);
}
inline u8 dComIfGs_checkCollect(int no) {
return g_dComIfG_gameInfo.save.getPlayer().getCollect().checkCollect(no);
}
inline OSTime dComIfGs_getDateIpl() {
return g_dComIfG_gameInfo.save.getPlayer().getPlayerStatusB().getDateIpl();
}
+1
View File
@@ -225,6 +225,7 @@ public:
void offCollect(int, u8);
BOOL isCollect(int, u8);
void setCollect(int idx, u8 byte) { mCollect[idx] = byte; }
u8 checkCollect(int idx) { return mCollect[idx]; }
void onTact(u8);
BOOL isTact(u8);
void onTriforce(u8);