Files
Bomberman/lib/wal/sources/Scene/Scene.hpp
2021-05-18 09:42:18 +02:00

24 lines
381 B
C++

//
// Created by Zoe Roux on 2021-05-14.
//
#pragma once
#include <vector>
#include "Entity/Entity.hpp"
namespace WAL
{
//! @brief Represent a single scene that contains entities.
class Scene
{
private:
//! @brief The list of registered entities
std::vector<Entity> _entities;
public:
//! @brief Get the list of entities.
std::vector<Entity> &getEntities();
};
}