PlayerBase OK (#126)

* Map symbol in Game

* PlayerBase OK

* Fix ActorRefill

* Fix MapManager

* Mark PlayerBase as complete

* Fix MapManager
This commit is contained in:
Aetias
2025-07-22 17:54:33 +02:00
committed by GitHub
parent cf8f5a80b1
commit d45ea18bf4
18 changed files with 264 additions and 102 deletions
+10
View File
@@ -15,4 +15,14 @@ public:
/* 0f */ // unk8 mUnk_0f;
/* 10 */ s32 mUnk_10;
/* 14 */
inline Entrance() :
mId(0xff),
mUnk_10(0) {}
inline Entrance(const Entrance &other) :
mPos(other.mPos),
mAngle(other.mAngle),
mId(other.mId),
mUnk_10(other.mUnk_10) {}
};