mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-03-02 08:58:28 +00:00
17 lines
335 B
C++
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>());
|
|
}
|
|
} |