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

24 lines
379 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> _entity;
public:
//! @brief Get the list of entities.
std::vector<Entity> &getEntities();
};
}