the rest of dAcEremly_c states

This commit is contained in:
elijah-thomas774
2026-04-07 16:49:25 -04:00
parent 355ac69904
commit 84a65865d0
4 changed files with 413 additions and 31 deletions
+3 -1
View File
@@ -121,6 +121,7 @@ private:
bool fn_177_79D0(bool);
bool fn_177_7B10();
void nightSleepDemoImpl();
void fn_177_8520(bool);
void fn_177_8600();
@@ -179,7 +180,8 @@ private:
/* 0xB44 */ u16 field_0xB44;
/* 0xB46 */ u16 field_0xB46;
/* 0xB48 */ u16 field_0xB48;
/* */ u8 _B4A[0xB4E - 0xB4A];
/* 0xB4A */ u16 field_0xB4A;
/* 0xB4C */ u16 field_0xB4C;
/* 0xB4E */ u16 field_0xB4E;
/* 0xB50 */ u16 field_0xB50;
/* 0xB52 */ u16 field_0xB52;
+3
View File
@@ -95,6 +95,9 @@ public:
mVec3_c &getOldPosition() {
return mOldPosition;
}
mVec3_c &getStartingPosition() {
return mStartingPos;
}
mVec3_c &getVelocity() {
return mVelocity;
}
+4
View File
@@ -63,6 +63,10 @@ public:
s32 absDiff(const mAng &other) const {
return sLib::absDiff(mVal, other.mVal);
}
template <typename T>
static s32 absDiff2(T a, T b) {
return abs(a - b);
}
f32 sin() const {
return nw4r::math::SinIdx(*this);
}