Adding a scene manger and wal functions

This commit is contained in:
Zoe Roux
2021-05-14 16:26:07 +02:00
parent 72b3af0f38
commit 43bbf487a3
18 changed files with 339 additions and 19 deletions
+20
View File
@@ -0,0 +1,20 @@
//
// 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;
};
}