diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-26 21:55:23 +1100 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-26 21:55:23 +1100 |
commit | 43bee361397315c7105b7214316325b185135331 (patch) | |
tree | b339f728b4cd6f37b37912b62c8d0af75dc9551d /archive/src/collision.c | |
parent | 24573518c3320673eb87d6d659522d77e05cb75c (diff) |
move archive into /src
Diffstat (limited to 'archive/src/collision.c')
-rw-r--r-- | archive/src/collision.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/archive/src/collision.c b/archive/src/collision.c deleted file mode 100644 index 81cbcfc..0000000 --- a/archive/src/collision.c +++ /dev/null @@ -1,9 +0,0 @@ -#include "immdraw.h" -#include "maths.h" -#include "maths_types.h" -#include "physics.h" - -PUB void Debug_DrawOBB(OBB obb) { - Transform t = transform_create(obb.center, obb.rotation, vec3_sub(obb.bbox.max, obb.bbox.min)); - Immdraw_Cuboid(t, vec4(0.0, 0.8, 0.1, 1.0), true); -} |