blob: 66471353f06634e211ac40b0b329d02c07de864e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#pragma once
#include <string>
namespace crepe {
class SceneManager;
class ComponentManager;
/**
* \brief Represents a Scene
*
* This class represents a Scene. The Scene class is only used as an interface for the game
* programmer.
*/
class Scene {
protected:
/**
* \param mgr Reference to the ComponentManager
* \param name Name of the scene
*/
Scene(ComponentManager & mgr, const std::string & name);
//! SceneManager instances Scene
friend class SceneManager;
public:
virtual ~Scene() = default;
public:
//! Load the scene
virtual void load_scene() = 0;
//! The scene name
const std::string name;
protected:
//! Reference to the ComponentManager
ComponentManager & component_manager;
};
} // namespace crepe
|