d_a_obj_movebox progress

This commit is contained in:
LagoLunatic
2023-10-21 18:52:52 -04:00
parent 1dd6f60fe6
commit 35bd70b8db
4 changed files with 455 additions and 210 deletions
+2 -2
View File
@@ -38,12 +38,12 @@ s32 cLib_distanceAngleS(s16 x, s16 y);
template <typename T>
inline void cLib_offBit(T& value, T bit) {
value &= ~bit;
value = static_cast<T>(value & ~bit);
}
template <typename T>
inline void cLib_onBit(T& value, T bit) {
value |= bit;
value = static_cast<T>(value | bit);
}
template <typename T>