Files
Bomberman/lib/wal/sources/Scene/Scene.cpp
Clément Le Bihan b0a77b1a56 norm fix
2021-05-23 17:17:05 +02:00

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