fonctionnel

This commit is contained in:
Jonathan Trottier
2023-10-30 14:56:04 -04:00
parent 4df7cfbd5d
commit 602bb84428
4 changed files with 5 additions and 4 deletions

View File

@@ -6,6 +6,7 @@
#include <map>
#include "player.h"
class World;
class Player;

View File

@@ -219,14 +219,14 @@ void Player::InflictDamage(float hitPoints)
m_hp -= hitPoints;
if (AmIDead())
{ // Quand le joueur est mort.
}
}
uint64_t Player::getId() const { return id; }