Files
Bomberman/lib/wal/sources/Scene/Scene.cpp
2021-05-17 16:26:21 +02:00

15 lines
159 B
C++

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