supercasiobros/include/bullets.h

15 lines
232 B
C

// v0.3
#ifndef BULLETS_H
#define BULLETS_H
// fire bullets
// two maximum on the screen (static)
// destroys ennemies, and is destroyed when it hits a wall
void bullet_throw();
void bullet_display();
void bullet_move();
#endif