mirror of
https://github.com/zeldaret/ph
synced 2026-05-24 07:10:52 -04:00
dda45d5574
* Fix * Fix * stupid typo * Another dumb typo * Fix * Fix declaration * Fix declaration * Fix * Fix symbols * Corrections * Fix regression in GetEntrancePos --------- Co-authored-by: Aetias <aetias@outlook.com>
29 lines
515 B
C++
29 lines
515 B
C++
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
#include "nds/math.h"
|
|
|
|
#include "System/SysNew.hpp"
|
|
|
|
class Entrance : public SysObject {
|
|
public:
|
|
/* 00 */ Vec3p mPos;
|
|
/* 0c */ unk16 mAngle;
|
|
/* 0e */ u8 mId;
|
|
/* 0f (padding) */
|
|
/* 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) {}
|
|
};
|