diff options
Diffstat (limited to 'src/includes/Powerup.hpp')
| -rw-r--r-- | src/includes/Powerup.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/includes/Powerup.hpp b/src/includes/Powerup.hpp new file mode 100644 index 0000000..2b6ec72 --- /dev/null +++ b/src/includes/Powerup.hpp @@ -0,0 +1,13 @@ +#ifndef POWRUP_H +#define POWERUP_H + +#include"Entity.hpp" +class Powerup:public Entity +{ + public: + static float time; + Powerup():Entity() {} + Powerup(sf::Vector2f pozicija,sf::Vector2f velicina,sf::Color boja); +}; + +#endif |
