Files
ph/include/Physics/AABB.hpp
T
2024-10-22 21:25:59 +02:00

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);
};