rm test param
This commit is contained in:
parent
bbb631f633
commit
db592bdb70
2
bullet.c
2
bullet.c
|
@ -36,7 +36,7 @@ void bullet_spawn(BulletType type, Vector2 pos, float angle)
|
|||
}
|
||||
}
|
||||
|
||||
void draw_bullets(Camera2D *cam)
|
||||
void draw_bullets()
|
||||
{
|
||||
for (int i = 0; i < BULLET_MAX; i++) {
|
||||
if (bullets[i].time <= EPSILON)
|
||||
|
|
2
bullet.h
2
bullet.h
|
@ -10,6 +10,6 @@ void bullet_load();
|
|||
|
||||
void bullet_spawn(BulletType type, Vector2 pos, float angle);
|
||||
|
||||
void draw_bullets(Camera2D *cam);
|
||||
void draw_bullets();
|
||||
|
||||
#endif // BULLET_H
|
||||
|
|
Loading…
Reference in New Issue