Files
Bomberman/sources/System/Bonus/BonusUISystem.cpp
2021-06-16 16:32:07 +02:00

17 lines
335 B
C++

//
// Created by hbenjamin on 09/06/2021.
//
#include "BonusUISystem.hpp"
namespace BBM
{
BonusUISystem::BonusUISystem(WAL::Wal &wal)
: System(wal)
{}
void BonusUISystem::onFixedUpdate(WAL::ViewEntity<StatComponent, Drawable2DComponent> &entity)
{
entity.get<StatComponent>().updater(entity.get<Drawable2DComponent>());
}
}