Pause music when pressing ESC during a level and resume it when exiting the pause...
[supertux.git] / src / supertux / gameconfig.hpp
index 9f9ffd2..3b7dd06 100644 (file)
@@ -72,7 +72,12 @@ public:
   KeyboardConfig keyboard_config;
   JoystickConfig joystick_config;
 
-  std::vector<std::string> disabled_addon_filenames;
+  struct Addon
+  {
+    std::string id;
+    bool enabled;
+  };
+  std::vector<Addon> addons;
 
   bool developer_mode;
 };