Changed *.h files to *.hpp

This commit is contained in:
Kayne Ruse
2013-05-01 21:11:04 +10:00
parent cf82679109
commit 63aa248056
21 changed files with 47 additions and 47 deletions
+27
View File
@@ -0,0 +1,27 @@
#ifndef SCENEMANAGER_HPP_
#define SCENEMANAGER_HPP_
#include "scene_list.hpp"
#include "base_scene.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;
};
#endif