This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/client/scene_manager.h
T
Kayne Ruse 79304f24b8 Imported basics
project directory
client - scene system
server - empty main
SDL_net source
graphical resources
2013-04-28 04:37:14 +10:00

28 lines
393 B
C++

#ifndef SCENEMANAGER_H_
#define SCENEMANAGER_H_
#include "scene_list.h"
#include "base_scene.h"
#include "SDL/SDL.h"
class SceneManager {
public:
/* Public access members */
SceneManager();
~SceneManager();
void Init();
void Proc();
void Quit();
private:
/* Private access members */
void LoadScene(SceneList sceneIndex);
void UnloadScene();
BaseScene* activeScene;
};
#endif