mirror of
https://github.com/encounter/ph.git
synced 2026-03-30 11:34:37 -07:00
14 lines
163 B
C++
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);
|
|
};
|