This repository has been archived on 2025-06-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LotoStatek/headers/PowerUp.h

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