aboutsummaryrefslogtreecommitdiff
path: root/src/includes/Powerup.hpp
blob: 8a4d7db4420e5c3965c737917375fa5608db0636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef POWRUP_H
#define POWERUP_H

#include"Entity.hpp"
class Powerup:public Entity
{
    public:
	static float time;
	int type;
	Powerup():Entity() {}
	Powerup(sf::Vector2f pozicija,sf::Vector2f velicina,sf::Color boja,int vrsta);
	void respawn(int sirina,int visina,int vrsta);
};

#endif