- replaced YES/NO with true/false
[supertux.git] / src / defines.h
index 8b95763..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
 */
 
 
@@ -16,7 +16,9 @@
 #define SUPERTUX_DEFINES_H
 /* Version: */
 
-//#define VERSION "0.0.5-0.0.6-CVS"
+#ifndef VERSION
+       #define VERSION "0.0.5-0.0.6-CVS"
+#endif
 
 /* Frames per second: */
 
 #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: */