rocksndiamonds-3.1.2
[rocksndiamonds.git] / src / init.h
index e3f8858523d179ca83ce1a3e0e634d32f4ba5587..08f999e3e6df1a51179d58384a4d774e92a85e2e 100644 (file)
@@ -16,6 +16,7 @@
 
 #include "main.h"
 
+#if 1
 #define setMoveIntoAcidProperty(l, e, v)                       \
        (setBitfieldProperty(&(l)->can_move_into_acid_bits,     \
                             EP_CAN_MOVE_INTO_ACID, e, v))
 void setBitfieldProperty(int *, int, int, boolean);
 boolean getBitfieldProperty(int *, int, int);
 
+#else
+
+void setMoveIntoAcidProperty(struct LevelInfo *, int, boolean);
+boolean getMoveIntoAcidProperty(struct LevelInfo *, int);
+#endif
+
 void InitElementPropertiesStatic(void);
 void InitElementPropertiesEngine(int);