mirror of
https://github.com/zeldaret/ph
synced 2026-05-23 23:05:17 -04:00
15 lines
191 B
C++
15 lines
191 B
C++
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
#include "lib/math.h"
|
|
|
|
struct AABB {
|
|
Vec3p min;
|
|
Vec3p max;
|
|
|
|
bool Contains(Vec3p *vec);
|
|
bool ContainsInXZ(Vec3p *vec);
|
|
};
|