blob: 85cd454cf4794d095160eab3897375639eacf145 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|