16 lines
237 B
C++
16 lines
237 B
C++
#ifndef ROCKET_H
|
|
#define ROCKET_H
|
|
#include "Projectile.h"
|
|
|
|
|
|
class Rocket : public Projectile{
|
|
public:
|
|
Rocket(float x, float y, sf::Texture &texture) : Projectile(x,y, texture) {};
|
|
void update() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //ROCKET_H
|