timer system for ui

This commit is contained in:
arthur.jamet
2021-06-16 13:26:48 +02:00
parent c1551f20de
commit a477ef1252
6 changed files with 66 additions and 12 deletions
+2
View File
@@ -16,6 +16,7 @@
#include "Runner.hpp"
#include "Models/GameState.hpp"
#include <System/Timer/TimerSystem.hpp>
#include <System/Timer/TimerUISystem.hpp>
#include <System/BombHolder/BombHolderSystem.hpp>
#include <System/Event/EventSystem.hpp>
#include <System/Health/HealthSystem.hpp>
@@ -67,6 +68,7 @@ namespace BBM
void Runner::addSystems(WAL::Wal &wal)
{
wal.addSystem<TimerSystem>()
.addSystem<TimerUISystem>()
.addSystem<KeyboardSystem>()
.addSystem<GamepadSystem>()
.addSystem<LobbySystem>()