mirror of
https://github.com/zeldaret/ph
synced 2026-05-23 15:01:37 -04:00
14 lines
216 B
C++
14 lines
216 B
C++
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
#include "Physics/AABB.hpp"
|
|
#include "Map/TriggerBase.hpp"
|
|
|
|
class TriggerAABB : public TriggerBase {
|
|
/* 00 (base) */
|
|
/* 14 */ AABB mAABB;
|
|
/* 2c */
|
|
};
|