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