quick fix for bug introduced by the last commit
[supertux.git] / src / leveleditor.h
index e083a64..5e6b6d7 100644 (file)
 /*  December 28, 2003 - February 1st, 2004 */
 
 /* leveleditor.h - A built-in level editor for SuperTux
- by Ricardo Cruz <rick2@aeiou.pt>                      */
+   Ricardo Cruz <rick2@aeiou.pt>                      
+   Tobias Glaesser <tobi.web@gmx.de> */
+
+#ifndef SUPERTUX_LEVELEDITOR_H
+#define SUPERTUX_LEVELEDITOR_H
+
+struct square
+{
+  int x1, y1, x2, y2;
+};
+
+/* selection modes */
+enum {
+  CURSOR,
+  SQUARE
+};
 
 int leveleditor(int levelnb);
 void newlevel(void);
@@ -21,3 +36,4 @@ void testlevel(void);
 int le_init(void);
 void le_checkevents(void);
 
+#endif /*SUPERTUX_LEVELEDITOR_H*/