hedgewars/uConsts.pas
changeset 2568 e654cbfb23ba
parent 2490 d8e0630087a0
child 2575 d06e0e829828
equal deleted inserted replaced
2567:02ff5f9510b5 2568:e654cbfb23ba
   329 	posCaseAmmo    = $00000001;
   329 	posCaseAmmo    = $00000001;
   330 	posCaseHealth  = $00000002;
   330 	posCaseHealth  = $00000002;
   331 	posCaseUtility = $00000004;
   331 	posCaseUtility = $00000004;
   332 
   332 
   333 	NoPointX = Low(LongInt);
   333 	NoPointX = Low(LongInt);
       
   334 
       
   335 	// hog tag mask
       
   336 	htNone        = $00;
       
   337 	htTeamName    = $01;
       
   338 	htName        = $02;
       
   339 	htHealth      = $04;
       
   340 	htTransparent = $80;
       
   341 	
       
   342 	cTagsMasks       : array[0..7] of byte = (
       
   343 											htTeamName or htName or htHealth,
       
   344 											htName or htHealth,
       
   345 											htHealth,
       
   346 											htNone,
       
   347 											htTeamName or htName or htHealth or htTransparent,
       
   348 											htName or htHealth or htTransparent,
       
   349 											htHealth or htTransparent,
       
   350 											htNone
       
   351 											);
   334 
   352 
   335 	cHHFileName   = 'Hedgehog';
   353 	cHHFileName   = 'Hedgehog';
   336 	cCHFileName   = 'Crosshair';
   354 	cCHFileName   = 'Crosshair';
   337 	cThemeCFGFilename = 'theme.cfg';
   355 	cThemeCFGFilename = 'theme.cfg';
   338 
   356