mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-20 21:35:12 +00:00
15 lines
159 B
C++
15 lines
159 B
C++
//
|
|
// Created by Zoe Roux on 2021-05-14.
|
|
//
|
|
|
|
#include "Scene.hpp"
|
|
|
|
namespace WAL
|
|
{
|
|
std::vector<Entity> &Scene::getEntities()
|
|
{
|
|
return this->_entity;
|
|
}
|
|
}
|
|
|