Revenge of the Mouse
Dependencies: 4DGL-uLCD-SE EthernetInterface Game_Synchronizer LCD_fonts MMA8452 SDFileSystem mbed-rtos mbed wave_player
Fork of 2035_Tanks_Shell by
Diff: bullet.h
- Revision:
- 15:4b27a3a95772
diff -r 36c306e26317 -r 4b27a3a95772 bullet.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bullet.h Mon Oct 26 04:12:35 2015 +0000 @@ -0,0 +1,25 @@ +#ifndef BULLET_H__ +#define BULLET_H__ + +#include "tank.h" + +class Bullet{ + public: + int x0; + int y0; + float vx0; + float vy0; + int x; + int y; + int speed; + float time; + bool in_flight; + + Tank* tank; + + Bullet(Tank* t); + void shoot(void); + int time_step(float dt); +}; + +#endif \ No newline at end of file