Files
Bomberman/sources/System/Health/HealthSystem.cpp
T
TrueBabyChaise b318442dc8 HealthComponent / HealthSystem
Component and system for health
2021-05-20 16:28:10 +02:00

20 lines
302 B
C++

//
// 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)
{
}
}