removed positioncomponent into healthsystem

This commit is contained in:
HENRY Benjamin
2021-06-09 14:58:45 +02:00
parent 3a99e5913b
commit 012e9ff054
2 changed files with 3 additions and 4 deletions
+2 -2
View File
@@ -13,12 +13,12 @@
namespace BBM
{
//! @brief A system to handle Health entities.
class HealthSystem : public WAL::System<HealthComponent, PositionComponent>
class HealthSystem : public WAL::System<HealthComponent>
{
private:
public:
//! @inherit
void onFixedUpdate(WAL::ViewEntity<HealthComponent, PositionComponent> &entity) override;
void onFixedUpdate(WAL::ViewEntity<HealthComponent> &entity) override;
//! @brief A default constructor
explicit HealthSystem(WAL::Wal &wal);