////////////////////////////////////////////////// //Created by Erik and Linda of the GameLogic team ////////////////////////////////////////////////// #ifndef GAMEMODE_H #define GAMEMODE_H namespace GameLogic { class GameMode { public: GameMode(void); ~GameMode(void); private: //variabels that control what game rules the level runs on }; } #endif