Console logging is now identical in all builds; warning and error show the console...
[supertux.git] / src / scripting / functions.hpp
index 9c2b58f..e1828c2 100644 (file)
@@ -25,7 +25,7 @@
 #define __custom(x)
 #endif
 
-namespace Scripting {
+namespace scripting {
 
 /**
  * Display the value of the argument. This is useful for inspecting tables.
@@ -128,6 +128,11 @@ void debug_show_fps(bool enable);
 void debug_draw_solids_only(bool enable);
 
 /**
+ * enable/disable drawing of editor images
+ */
+void debug_draw_editor_images(bool enable);
+
+/**
  * enable/disable worldmap ghost mode
  */
 void debug_worldmap_ghost(bool enable);
@@ -212,7 +217,7 @@ void record_demo(const std::string& filename);
  */
 void play_demo(const std::string& filename);
 
-} // namespace Scripting
+} // namespace scripting
 
 #endif