- replaced YES/NO with true/false
[supertux.git] / src / defines.h
index 899da1c..97c7a78 100644 (file)
@@ -3,11 +3,11 @@
   
   Super Tux
   
-  by Bill Kendrick
+  by Bill Kendrick & Tobias Glaesser <tobi.web@gmx.de>
   bill@newbreedsoftware.com
   http://www.newbreedsoftware.com/supertux/
  
-  April 11, 2000 - February 1, 2004
+  April 11, 2000 - March 15, 2004
 */
 
 
 #define JOY_X 0
 #define JOY_Y 1
 
-
-/* Booleans: */
-
-#define NO 0
-#define YES 1
-
 /* Direction (keyboard/joystick) states: */
 
 #define UP 0
 /* Dying types: */
 
 /* ---- NO 0 */
-#define SQUISHED 1
-#define FALLING 2
+enum DyingType {
+  DYING_NOT = 0,
+  DYING_SQUISHED = 1,
+  DYING_FALLING = 2
+};
 
 /* Hurt modes: */