summaryrefslogtreecommitdiff
path: root/include/Map/CameraViewpoint.hpp
diff options
context:
space:
mode:
authorAetias <aetias@outlook.com>2024-04-26 16:47:04 +0200
committerAetias <aetias@outlook.com>2024-04-26 16:47:04 +0200
commitd40d7abbb9ec6ddc201e54096507e3083c070cba (patch)
tree4317636236a9b42277423d4f540e4c8a4b267147 /include/Map/CameraViewpoint.hpp
parent62e3dc0834256cc233c5004b7f901505a5140ea6 (diff)
Add map components `Exit` and `CameraViewpoint`
Diffstat (limited to 'include/Map/CameraViewpoint.hpp')
-rw-r--r--include/Map/CameraViewpoint.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/Map/CameraViewpoint.hpp b/include/Map/CameraViewpoint.hpp
new file mode 100644
index 00000000..0fde9bdc
--- /dev/null
+++ b/include/Map/CameraViewpoint.hpp
@@ -0,0 +1,19 @@
+#pragma once
+
+#include "global.h"
+#include "types.h"
+
+#include "lib/math.h"
+
+#include "System/SysNew.hpp"
+
+class CameraViewpoint : public SysObject {
+ /* 00 */ unk32 mUnk_00;
+ /* 04 */ unk8 mUnk_04
+ /* 05 */ unk8 mUnk_05[3];
+ /* 08 */ Vec3p mPos;
+ /* 14 */ unk16 mUnk_14;
+ /* 16 */ unk16 mUnk_16;
+ /* 18 */ unk16 mUnk_18[2];
+ /* 1c */
+};