aboutsummaryrefslogtreecommitdiff
path: root/bullet.h
blob: cd7a436b2b733c289915a9ae37e8fc93484ffb5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef bullet_h
#define bullet_h

struct World;

int new_player_bullet(
	struct World* world,
	int x,
	int y,
	int vx,
	int vy,
	int life
);

#endif