fix
[supertux.git] / src / leveleditor.h
index 912f8ea..33b0677 100644 (file)
@@ -1,23 +1,27 @@
-/***************************************************************************
-                          leveleditor.h  -  built'in level editor
-                             -------------------
-    begin                : June, 23 2004
-    copyright            : (C) 2004 by Ricardo Cruz
-    email                : rick2@aeiou.pt
- ***************************************************************************/
-
-/***************************************************************************
- *                                                                         *
- *   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) 2005 Matthias Braun <matze@braunis.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.
 #ifndef SUPERTUX_LEVELEDITOR_H
 #define SUPERTUX_LEVELEDITOR_H
 
+#if 0
+
 #include <set>
 #include <string>
 
@@ -30,12 +34,12 @@ using namespace SuperTux;
 
 namespace SuperTux {
 class ButtonGroup;
-class Menu;
-class Surface;
 }
 
+class Menu;
 class Sector;
 class TileMap;
+class Surface;
 
 enum {
   MN_ID_RETURN,
@@ -127,7 +131,7 @@ private:
   Vector scroll;
   float zoom;
 
-  Timer2 level_name_timer;
+  Timer level_name_timer;
 
   Surface *img_background_bt, *img_foreground_bt, *img_interactive_bt;
   Surface *img_save_level_bt, *img_setup_level_bt, *img_test_level_bt;
@@ -147,3 +151,5 @@ private:
 };
 
 #endif
+
+#endif