diff options
Diffstat (limited to 'include/Map/CameraViewpoint.hpp')
| -rw-r--r-- | include/Map/CameraViewpoint.hpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/Map/CameraViewpoint.hpp b/include/Map/CameraViewpoint.hpp index 924ef379..a6afe337 100644 --- a/include/Map/CameraViewpoint.hpp +++ b/include/Map/CameraViewpoint.hpp @@ -8,12 +8,18 @@ #include "System/SysNew.hpp" class CameraViewpoint : public SysObject { +public: /* 00 */ unk32 mUnk_00; - /* 04 */ unk8 mUnk_04; - /* 05 */ unk8 mUnk_05[3]; + /* 04 */ u8 mUnk_04; /* 08 */ Vec3p mPos; /* 14 */ unk16 mUnk_14; /* 16 */ unk16 mUnk_16; - /* 18 */ unk16 mUnk_18[2]; + /* 18 */ u16 mUnk_18[2]; /* 1c */ + + inline CameraViewpoint() : + mUnk_00(0), + mUnk_04(0xff), + mUnk_14(0), + mUnk_16(0) {} }; |
