Files
2025-01-18 15:50:03 +01:00

14 lines
163 B
C++

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