Adding tests and cleaning up

This commit is contained in:
Zoe Roux
2021-05-31 12:02:19 +02:00
parent e24ad0fa50
commit d034514e28
5 changed files with 56 additions and 5 deletions
+2
View File
@@ -17,6 +17,7 @@
#include <Component/Movable/MovableComponent.hpp>
#include <Component/Controllable/ControllableComponent.hpp>
#include <Component/Keyboard/KeyboardComponent.hpp>
#include <System/Gamepad/GamepadSystem.hpp>
#include "Models/Vector2.hpp"
#include "Component/Renderer/CameraComponent.hpp"
#include "Runner.hpp"
@@ -40,6 +41,7 @@ namespace BBM
void addSystems(WAL::Wal &wal)
{
wal.addSystem<KeyboardSystem>()
.addSystem<GamepadSystem>()
.addSystem<ControllableSystem>()
.addSystem<MovableSystem>();
}