Decomp Actor

This commit is contained in:
Aetias
2024-05-25 23:15:25 +02:00
parent 67aba5b356
commit 2b81d5a387
5 changed files with 158 additions and 60 deletions
+8
View File
@@ -9,5 +9,13 @@ struct Cylinder {
Vec3p pos;
q20 size; // height and radius
inline Cylinder() {}
inline Cylinder(q20 size) {
pos.x = 0;
pos.y = size;
pos.z = 0;
this->size = size;
}
bool Overlaps(Cylinder *other);
};