Remove some unnecessary files.
This commit is contained in:
parent
216b5de60e
commit
20b3be68a7
@ -1,6 +0,0 @@
|
|||||||
/*#include "Global.h"
|
|
||||||
|
|
||||||
Global::Global(){
|
|
||||||
|
|
||||||
}
|
|
||||||
*/
|
|
14
src/Global.h
14
src/Global.h
@ -1,14 +0,0 @@
|
|||||||
#ifndef GAMESESSION_H
|
|
||||||
#define GAMESESSION_H
|
|
||||||
|
|
||||||
#include "Singleton.h"
|
|
||||||
#include "Graphics.h"
|
|
||||||
|
|
||||||
/*class Global : public Singleton<Global>
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
Graphics * g;
|
|
||||||
Global();
|
|
||||||
};*/
|
|
||||||
|
|
||||||
#endif // GAMESESSION_H
|
|
@ -1,26 +0,0 @@
|
|||||||
/*
|
|
||||||
* SaveLoadException.h
|
|
||||||
*
|
|
||||||
* Created on: Mar 29, 2012
|
|
||||||
* Author: Simon
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef SAVELOADEXCEPTION_H_
|
|
||||||
#define SAVELOADEXCEPTION_H_
|
|
||||||
|
|
||||||
#include <string>
|
|
||||||
#include <exception>
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
struct SaveLoadException: public exception {
|
|
||||||
string message;
|
|
||||||
public:
|
|
||||||
SaveLoadException(string message_): message(message_) {}
|
|
||||||
const char * what() const throw()
|
|
||||||
{
|
|
||||||
return message.c_str();
|
|
||||||
}
|
|
||||||
~SaveLoadException() throw() {};
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif /* SAVELOADEXCEPTION_H_ */
|
|
Reference in New Issue
Block a user