1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#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 ); int new_enemy_bullet( struct World* world, int x, int y, int vx, int vy ); #endif