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 ECE2035 Spring 2015 TA

bullet.h

Committer:
jford38
Date:
2015-10-26
Revision:
15:4b27a3a95772

File content as of revision 15:4b27a3a95772:

#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