mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-02-19 03:34:07 +00:00
18 lines
405 B
C++
18 lines
405 B
C++
//
|
|
// Created by Zoe Roux on 5/24/21.
|
|
//
|
|
|
|
#include "Component/Movable/MovableComponent.hpp"
|
|
#include "Component/GridCentered/GridCenteredComponent.hpp"
|
|
#include "GridCenteredSystem.hpp"
|
|
|
|
namespace BBM
|
|
{
|
|
GridCenteredSystem::GridCenteredSystem(WAL::Wal &wal)
|
|
: System(wal)
|
|
{}
|
|
|
|
void GridCenteredSystem::onFixedUpdate(WAL::ViewEntity<GridCenteredComponent, MovableComponent, PositionComponent> &)
|
|
{
|
|
}
|
|
} |