Actor::mType field (#7)

* `Actor::mType` field

* Fix struct sizes

* Update symbols
This commit is contained in:
Aetias
2025-08-24 18:41:23 +02:00
committed by GitHub
parent 758f36f10c
commit c925fce03c
10 changed files with 118 additions and 86 deletions
+24
View File
@@ -0,0 +1,24 @@
#pragma once
#include "types.h"
#include "nitro/math.h"
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;
}
inline void MakeEmpty() {
pos = gVec3p_ZERO;
size = -1;
}
};