Files
ph/include/Physics/Cylinder.hpp
T
2024-05-23 18:52:36 +02:00

14 lines
185 B
C++

#pragma once
#include "global.h"
#include "types.h"
#include "lib/math.h"
struct Cylinder {
Vec3p pos;
q20 size; // height and radius
bool Overlaps(Cylinder *other);
};