hedgewars/uConsts.pas
changeset 3519 56cbc035b74b
parent 3509 d72c2219595d
child 3523 6592fbb969da
child 3524 8d0783d2a0ff
equal deleted inserted replaced
3518:772b37c9c3ba 3519:56cbc035b74b
   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