- fixed level editor crash (a hack)
[supertux.git] / src / leveleditor.h
index 5e6b6d7..48b8a6e 100644 (file)
@@ -1,17 +1,24 @@
-/***************************************************************************
- *                                                                         *
- *   This program is free software; you can redistribute it and/or modify  *
- *   it under the terms of the GNU General Public License as published by  *
- *   the Free Software Foundation; either version 2 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- ***************************************************************************/
+//  $Id$
+// 
+//  SuperTux
+//  Copyright (C) 2003 Ricardo Cruz <rick2@aeiou.pt>
+//  Copyright (C) 2003 Tobias Glaesser <tobi.web@gmx.de>
+//
+//  This program is free software; you can redistribute it and/or
+//  modify it under the terms of the GNU General Public License
+//  as published by the Free Software Foundation; either version 2
+//  of the License, or (at your option) any later version.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+// 
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-/*  December 28, 2003 - February 1st, 2004 */
-
-/* leveleditor.h - A built-in level editor for SuperTux
-   Ricardo Cruz <rick2@aeiou.pt>                      
-   Tobias Glaesser <tobi.web@gmx.de> */
+/* leveleditor.h - A built-in level editor for SuperTux */
 
 #ifndef SUPERTUX_LEVELEDITOR_H
 #define SUPERTUX_LEVELEDITOR_H
@@ -22,12 +29,9 @@ struct square
 };
 
 /* 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();