From 8475767975a0f07507908ba53dba894b97b48795 Mon Sep 17 00:00:00 2001 From: realtradam Date: Sun, 12 May 2024 17:34:21 -0400 Subject: shooting bullets --- src/bullet.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/bullet.h (limited to 'src/bullet.h') 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 -- cgit v1.2.3