aboutsummaryrefslogtreecommitdiff
path: root/src/includes/Player.hpp
blob: 3a2a04051ccb541f4710d1885529f8fc43924aae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef PLAYER_H
#define PLAYER_H

#include"Entity.hpp"
class Player:public Entity
{
    public:
	int health,xp;
	int stomprad=270;
	float stomptime;

	Player():Entity() {}
	Player(sf::Vector2f pozicija,sf::Vector2f velicina,sf::Color boja);
	void updatest(float dt);
};

#endif