#include "supertux/menu/options_menu.hpp"#include "audio/sound_manager.hpp"#include "gui/menu_manager.hpp"#include "supertux/gameconfig.hpp"#include "supertux/menu/joystick_menu.hpp"#include "supertux/menu/keyboard_menu.hpp"#include "supertux/menu/language_menu.hpp"#include "supertux/menu/menu_storage.hpp"#include "supertux/menu/profile_menu.hpp"#include "util/string_util.hpp"#include "video/renderer.hpp"#include <algorithm>#include <sstream>Go to the source code of this file.
Enumerations | |
| enum | OptionsMenuIDs { MNID_FULLSCREEN, MNID_FULLSCREEN_RESOLUTION, MNID_MAGNIFICATION, MNID_ASPECTRATIO, MNID_PROFILES, MNID_SOUND, MNID_MUSIC } |
| enum OptionsMenuIDs |
| MNID_FULLSCREEN | |
| MNID_FULLSCREEN_RESOLUTION | |
| MNID_MAGNIFICATION | |
| MNID_ASPECTRATIO | |
| MNID_PROFILES | |
| MNID_SOUND | |
| MNID_MUSIC |
Definition at line 34 of file options_menu.cpp.
00034 { 00035 MNID_FULLSCREEN, 00036 MNID_FULLSCREEN_RESOLUTION, 00037 MNID_MAGNIFICATION, 00038 MNID_ASPECTRATIO, 00039 MNID_PROFILES, 00040 MNID_SOUND, 00041 MNID_MUSIC 00042 };
1.5.1