Do a black fade-in when selecting slot.
[supertux.git] / src / leveleditor.h
index 939159b..d277416 100644 (file)
 #ifndef SUPERTUX_LEVELEDITOR_H
 #define SUPERTUX_LEVELEDITOR_H
 
+#if 0 // TODO
+
 struct square
 {
   int x1, y1, x2, y2;
 };
 
 /* selection modes */
-enum {
-  CURSOR,
-  SQUARE
-};
+enum SelectionMode { CURSOR, SQUARE, NONE };
 
-int leveleditor(int levelnb);
+int leveleditor(char* filename = NULL);
 void newlevel(void);
 void selectlevel(void);
 void le_savelevel();
@@ -43,4 +42,6 @@ void testlevel(void);
 int le_init(void);
 void le_checkevents(void);
 
+#endif
+
 #endif /*SUPERTUX_LEVELEDITOR_H*/