コード例 #1
0
ファイル: EscapeMadness.cpp プロジェクト: nDy/EscapeMadness
	int Loop() {

		switch (Current) {
		case Structure::STORY:
			Current = story->Loop();
			break;

		case Structure::INTRO:
			Current = intro->Loop();
			break;

		case Structure::MENU:
			Current = menu->Loop();
			break;

		case Structure::INGAME:
			Current = ingame->Loop();
			break;

		case Structure::HELP:
			Current = help->Loop();
			break;
		}
		return Current;
	}
コード例 #2
0
ファイル: Game.cpp プロジェクト: pjatacsuk/hentes_map_editor
void Game::GameMenu() {
	Menu* menu = new Menu(App);
	map_path = menu->Loop();
	game_status = EDITOR;
	delete menu;
	


}