work on d_a_door_boss (#2061)

This commit is contained in:
Caroline Madsen
2024-02-04 17:38:58 -05:00
committed by GitHub
parent 0bde0ac354
commit 658cb52118
27 changed files with 593 additions and 1328 deletions
+1
View File
@@ -137,6 +137,7 @@ struct cXyz : Vec {
f32 getDotProduct(const Vec& other) const { return VECDotProduct(this, &other); }
f32 inprod(const Vec& other) const { return getDotProduct(other); }
f32 inprodXZ(const Vec& other) const { return x * other.x + z * other.z; }
};
#endif /* C_XYZ_H */