mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-07-04 20:56:01 +00:00
b318442dc8
Component and system for health
20 lines
302 B
C++
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)
|
|
{
|
|
|
|
}
|
|
}
|