equal
deleted
inserted
replaced
247 LAND_WIDTH_MASK = $FFFFF000; |
247 LAND_WIDTH_MASK = $FFFFF000; |
248 LAND_HEIGHT_MASK = $FFFFF800; |
248 LAND_HEIGHT_MASK = $FFFFF800; |
249 {$ENDIF} |
249 {$ENDIF} |
250 |
250 |
251 // To allow these to layer, going to treat them as masks. The bottom byte is reserved for objects |
251 // To allow these to layer, going to treat them as masks. The bottom byte is reserved for objects |
252 LAND_BASIC = $8000; // white |
252 lfBasic = $8000; // white |
253 LAND_INDESTRUCTIBLE = $4000; // red |
253 lfIndestructible = $4000; // red |
254 LAND_OBJECT = $2000; // no idea |
254 lfObject = $2000; // no idea |
255 LAND_DAMAGED = $1000; // no idea |
255 lfDamaged = $1000; // no idea |
256 |
256 |
257 cMaxPower = 1500; |
257 cMaxPower = 1500; |
258 cMaxAngle = 2048; |
258 cMaxAngle = 2048; |
259 cPowerDivisor = 1500; |
259 cPowerDivisor = 1500; |
260 |
260 |