mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-21 13:55:10 +00:00
17 lines
238 B
C++
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
|