mirror of
https://github.com/zeldaret/ph
synced 2026-08-09 18:57:43 -04:00
PlayerBase OK (#126)
* Map symbol in Game * PlayerBase OK * Fix ActorRefill * Fix MapManager * Mark PlayerBase as complete * Fix MapManager
This commit is contained in:
@@ -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) {}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user