Files
ph/include/Physics/Sphere.hpp
T
2024-10-21 23:32:28 +02:00

14 lines
163 B
C++

#pragma once
#include "global.h"
#include "types.h"
#include "lib/math.h"
struct Sphere {
Vec3p pos;
int radius;
bool ContainsInXZ(Vec3p *vec);
};