15 lines
273 B
C++
15 lines
273 B
C++
#ifndef ENEMY_BULLET_H
|
|
#define ENEMY_BULLET_H
|
|
|
|
#include "Projectile.h"
|
|
|
|
class EnemyBullet : public Projectile {
|
|
public:
|
|
EnemyBullet(float x, float y, sf::Texture &texture);
|
|
void update() override;
|
|
|
|
void setOutOfBounds(bool status);
|
|
};
|
|
|
|
#endif // ENEMY_BULLET_H
|