mirror of
https://github.com/zeldaret/ph
synced 2026-05-23 15:01:37 -04:00
15 lines
250 B
C++
15 lines
250 B
C++
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
#include "Map/TriggerBase.hpp"
|
|
#include "Physics/Sphere.hpp"
|
|
|
|
class TriggerSphere : public TriggerBase {
|
|
/* 00 (base) */
|
|
/* 14 */ Sphere mSphere;
|
|
/* 24 */ s32 mHeight;
|
|
/* 28 */
|
|
};
|