fix compile errors

This commit is contained in:
arthur.jamet
2021-06-17 20:50:43 +02:00
parent 1cf820bf87
commit 051096a194
43 changed files with 124 additions and 137 deletions
+2 -2
View File
@@ -10,10 +10,10 @@
namespace BBM
{
HealthComponent::HealthComponent(WAL::Entity &entity, unsigned int healthPoint, const WAL::Callback<WAL::Entity &, WAL::Wal &> &onDeath)
HealthComponent::HealthComponent(WAL::Entity &entity, unsigned int healthPoint, const WAL::Callback<WAL::Entity &, WAL::Wal &> &onDeathCallback)
: WAL::Component(entity),
_healthPoint(healthPoint),
onDeath(onDeath)
onDeath(onDeathCallback)
{}
WAL::Component *HealthComponent::clone(WAL::Entity &entity) const