// // Created by Zoe Roux on 2021-05-14. // #include "Scene.hpp" namespace WAL { std::vector &Scene::getEntities() { return this->_entities; } Scene &Scene::operator=(const Scene &) { return *this; } } // namespace WAL