Add MapBase and some components

This commit is contained in:
Aetias
2024-04-23 21:51:13 +02:00
parent 83f4080843
commit 62e3dc0834
7 changed files with 191 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#pragma once
#include "global.h"
#include "types.h"
#include "Physics/Sphere.hpp"
#include "Map/TriggerBase.hpp"
class TriggerSphere : public TriggerBase {
/* 00 (base) */
/* 14 */ Sphere mSphere;
/* 24 */ s32 mHeight;
/* 28 */
};