summaryrefslogtreecommitdiffhomepage
path: root/src/bullet.h
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-05-12 17:34:21 -0400
committerrealtradam <[email protected]>2024-05-12 17:34:21 -0400
commit8475767975a0f07507908ba53dba894b97b48795 (patch)
tree4d5bf2f8c49eb92f8d9777e0606d944dca01905d /src/bullet.h
parentf5311cc940fd94aa70808f19a38581c80b764615 (diff)
downloadtojam2024-8475767975a0f07507908ba53dba894b97b48795.tar.gz
tojam2024-8475767975a0f07507908ba53dba894b97b48795.zip
shooting bullets
Diffstat (limited to 'src/bullet.h')
-rw-r--r--src/bullet.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/bullet.h b/src/bullet.h
new file mode 100644
index 0000000..85cd454
--- /dev/null
+++ b/src/bullet.h
@@ -0,0 +1,13 @@
+#ifndef GAME_BULLET_H
+#define GAME_BULLET_H
+#include "raylib.h"
+
+void
+spawn_bullet(int team, Vector3 position, Vector3 direction);
+
+void
+render_bullets(void);
+
+ void
+bullet_collision_check(void);
+#endif