* Comment out resizable flag because it blue-screens on Windows
[supertux.git] / src / control / controller.hpp
index deeb8e6..ac0030b 100644 (file)
@@ -24,20 +24,26 @@ class Controller
 {
 public:
   static const char* controlNames[];
-  
+
   enum Control {
     LEFT = 0,
     RIGHT,
     UP,
     DOWN,
+
     JUMP,
     ACTION,
+
     PAUSE_MENU,
     MENU_SELECT,
+
     CONSOLE,
+
     PEEK_LEFT,
     PEEK_RIGHT,
-    
+    PEEK_UP,
+    PEEK_DOWN,
+
     CONTROLCOUNT
   };
 
@@ -48,7 +54,7 @@ public:
   bool hold(Control control);
   /** returns true if the control has just been pressed down this frame */
   bool pressed(Control control);
-  /** returns true if the control has just been released this frame */ 
+  /** returns true if the control has just been released this frame */
   bool released(Control control);
 
   virtual void reset();