hedgewars/uConsts.pas
changeset 1118 caf47265d03f
parent 1111 25d0ca2e4a7d
child 1123 ed713652afae
equal deleted inserted replaced
1117:82378325b5c1 1118:caf47265d03f
    86 
    86 
    87      THHFont    = record
    87      THHFont    = record
    88                   Handle: PTTF_Font;
    88                   Handle: PTTF_Font;
    89                   Height: LongInt;
    89                   Height: LongInt;
    90                   style: LongInt;
    90                   style: LongInt;
    91                   Name: string[15];
    91                   Name: string[19];
    92                   end;
    92                   end;
    93 
    93 
    94      PAmmo = ^TAmmo;
    94      PAmmo = ^TAmmo;
    95      TAmmo = record
    95      TAmmo = record
    96              Propz: LongWord;
    96              Propz: LongWord;
   229 	cThemeCFGFilename = 'theme.cfg';
   229 	cThemeCFGFilename = 'theme.cfg';
   230 
   230 
   231 	Fontz: array[THWFont] of THHFont = (
   231 	Fontz: array[THWFont] of THHFont = (
   232 			(Handle: nil;
   232 			(Handle: nil;
   233 			Height: 12;
   233 			Height: 12;
   234 			style: TTF_STYLE_BOLD;
   234 			style: TTF_STYLE_NORMAL;
   235 			Name: 'DejaVuSans.ttf'),
   235 			Name: 'DejaVuSans-Bold.ttf'),
   236 			(Handle: nil;
   236 			(Handle: nil;
   237 			Height: 24;
   237 			Height: 24;
   238 			style: TTF_STYLE_BOLD;
   238 			style: TTF_STYLE_NORMAL;
   239 			Name: 'DejaVuSans.ttf'),
   239 			Name: 'DejaVuSans-Bold.ttf'),
   240 			(Handle: nil;
   240 			(Handle: nil;
   241 			Height: 10;
   241 			Height: 10;
   242 			style: TTF_STYLE_BOLD;
   242 			style: TTF_STYLE_NORMAL;
   243 			Name: 'DejaVuSans.ttf')
   243 			Name: 'DejaVuSans-Bold.ttf')
   244 			);
   244 			);
   245 
   245 
   246 	FontBorder = 2;
   246 	FontBorder = 2;
   247 
   247 
   248 	PathPrefix: string = './';
   248 	PathPrefix: string = './';