12 lines
212 B
C++
12 lines
212 B
C++
#ifndef POWERUP_H
|
|
#define POWERUP_H
|
|
#include "ObjectItem.hpp"
|
|
|
|
class PowerUp : public ObjectItem {
|
|
public:
|
|
PowerUp(float x, float y, sf::Texture &texture_);
|
|
void update() override;
|
|
};
|
|
|
|
#endif //POWERUP_H
|