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