blob: 2b6ec72cff1da4c5478eba5bc6d46b0de87964cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|