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.hpp
T
2013-05-16 19:14:38 +10:00

36 lines
553 B
C++

#ifndef SCENEMANAGER_HPP_
#define SCENEMANAGER_HPP_
#include "scene_list.hpp"
#include "base_scene.hpp"
#include "config_utility.hpp"
#include "surface_manager.hpp"
#include "network.hpp"
#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;
ConfigUtility configUtil;
SurfaceManager surfaceMgr;
TCPSocket socket;
};
#endif