diff options
| author | aleksav013 <aleksav013@gmail.com> | 2021-06-06 01:45:47 +0200 |
|---|---|---|
| committer | aleksav013 <aleksav013@gmail.com> | 2021-06-06 01:45:47 +0200 |
| commit | 060ddd25ef18a6289d01283bc76bc4da90bf2a39 (patch) | |
| tree | 9b59683089b08a5cacb606be09738c78ed88e493 /src/includes/Player.hpp | |
| parent | bf4e10748f20572a8b69da99c97bf5cd17f8b250 (diff) | |
Adding powerup content; Fixing dt bug
Diffstat (limited to 'src/includes/Player.hpp')
| -rw-r--r-- | src/includes/Player.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/includes/Player.hpp b/src/includes/Player.hpp index ff094e9..2c6a776 100644 --- a/src/includes/Player.hpp +++ b/src/includes/Player.hpp @@ -7,13 +7,14 @@ class Player:public Entity public: int health,xp; int stomprad=270; - float stomptime; + float stomptime,vampirictime; sf::CircleShape krug; Player():Entity() {} Player(sf::Vector2f pozicija,sf::Vector2f velicina,sf::Color boja); void updatest(float dt); + void updatevt(float dt); }; #endif |
