Files
Bomberman/lib/wal/sources/Scene/Scene.cpp
2021-05-27 17:38:12 +02:00

17 lines
238 B
C++

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