Merge branch 'feature/download-non-blocking'
[supertux.git] / src / supertux / gameconfig.hpp
index 0bcbf88..3b7dd06 100644 (file)
@@ -71,6 +71,15 @@ public:
 
   KeyboardConfig keyboard_config;
   JoystickConfig joystick_config;
+
+  struct Addon
+  {
+    std::string id;
+    bool enabled;
+  };
+  std::vector<Addon> addons;
+
+  bool developer_mode;
 };
 
 #endif