Added AsloEngine 0.9.0 to Repository
This commit is contained in:
parent
d017dd84b3
commit
881e6c70f2
60 changed files with 2648 additions and 0 deletions
24
asloengine/headers/scenemanager.hpp
Executable file
24
asloengine/headers/scenemanager.hpp
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
#pragma once
|
||||
|
||||
#define SCENE_MANAGER_H
|
||||
|
||||
#include "scene.hpp"
|
||||
|
||||
namespace asloengine
|
||||
{
|
||||
|
||||
class SceneManager
|
||||
{
|
||||
|
||||
public:
|
||||
static Scene *scene;
|
||||
static Scene *next_scene;
|
||||
|
||||
static void load_scene(Scene *_scene);
|
||||
static void load_scene(Scene *_scene, sf::RenderWindow *window);
|
||||
static void set_scene(Scene *_scene);
|
||||
static void unload_scene();
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue