mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-06-20 07:40:31 +00:00
15 lines
304 B
C++
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()
|
|
{
|
|
}
|
|
} |