Fix HealthComponent

This commit is contained in:
TrueBabyChaise
2021-05-20 16:50:00 +02:00
parent b318442dc8
commit a8cd709874
3 changed files with 4 additions and 52 deletions

View File

@@ -1,19 +0,0 @@
//
// Edited by Benjamin Henry on 2021-05-20.
// Edited by Louis Auzuret on 2021-05-20.
//
#include "HealthSystem.hpp"
namespace BBM
{
const std::type_info &HealthSystem::getComponent() const
{
return typeid(HealthComponent);
}
void HealthSystem::onFixedUpdate(WAL::Entity &entity)
{
}
}