diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-05 12:48:05 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-05 12:48:05 +1000 |
commit | dfb6adbcbcc7d50b770b6d5ea82efdd8f8c32e25 (patch) | |
tree | a470b91a90716d7ea46fde53ed395449c24583a2 /src/collision.c | |
parent | 54354e32c6498cc7f8839ab4deb1208d37216cc5 (diff) |
delete documentation workflow
Diffstat (limited to 'src/collision.c')
-rw-r--r-- | src/collision.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/collision.c b/src/collision.c deleted file mode 100644 index 81cbcfc..0000000 --- a/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); -} |