Files
Bomberman/sources/System/Lobby/LobbySystem.cpp
T
2021-06-10 12:01:35 +02:00

15 lines
304 B
C++

#include <Component/Animation/AnimationsComponent.hpp>
#include "System/Lobby/LobbySystem.hpp"
#include "Component/Controllable/ControllableComponent.hpp"
#include "Entity/Entity.hpp"
namespace BBM
{
LobbySystem::LobbySystem(WAL::Wal &wal)
: System(wal)
{}
void LobbySystem::onSelfUpdate()
{
}
}