mirror of
https://github.com/zeldaret/ph
synced 2026-05-23 06:54:18 -04:00
5b15874c4d
* Comments * Lay out theoretical code * Externalise func_020196bc & func_020196fc * Pull merge * Pull merge * Decomp MapBase::func_ov00_02080edc * Fix MapManager TilePos params * Decomp progress * Fix MapManager param issue * Decomp progress * Update MapManager var pointer type * Fix function defs * Update symbols * Update * Match MapBase_Unk2::func_ov00_02080ad0 (thx 2 dt mow & yanis) * Update * Decomp progress 26% * Decomp progress 28% * Fix struct overlap * Fix unknown members * Uncomment and fix rest of methods (most still non-matching) * Decomp progress * Corrections
26 lines
454 B
C++
26 lines
454 B
C++
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
#include "nds/math.h"
|
|
|
|
#include "System/SysNew.hpp"
|
|
|
|
class CameraViewpoint : public SysObject {
|
|
public:
|
|
/* 00 */ unk32 mUnk_00;
|
|
/* 04 */ u8 mUnk_04;
|
|
/* 08 */ Vec3p mPos;
|
|
/* 14 */ unk16 mUnk_14;
|
|
/* 16 */ unk16 mUnk_16;
|
|
/* 18 */ u16 mUnk_18[2];
|
|
/* 1c */
|
|
|
|
inline CameraViewpoint() :
|
|
mUnk_00(0),
|
|
mUnk_04(0xff),
|
|
mUnk_14(0),
|
|
mUnk_16(0) {}
|
|
};
|