1+ ; // FILE: HeaderTemplate.ini ///////////////////////////////////////
2+ ; // Contains templates we can assign to control in the game. The game can be customized
3+ ; // depending on location with this system. For example, if we go to a chinease font, we probably don't
4+ ; // want things to be in bold so we can setup all the sections that use to use bold to not, as well as
5+ ; // change the font if need be.
6+
7+ ; /////////////////////////////////////////////////////////////////////
8+ ; // Modify this file if you're working on different languages!!!!! //
9+ ; /////////////////////////////////////////////////////////////////////
10+
11+ ; // Whenever we have large Titles
12+ HeaderTemplate Title
13+ Font = " Placard MT Condensed"
14+ Point = 20
15+ Bold = No
16+ End
17+
18+ ; //This will be used for the buttons at the bottom of the screens
19+ HeaderTemplate MainButton
20+ Font = " Placard MT Condensed"
21+ Point = 16
22+ Bold = No
23+ End
24+
25+ ; //This is used for all the rest of the buttons
26+ HeaderTemplate Button
27+ Font = " Arial"
28+ Point = 12
29+ Bold = No
30+ End
31+
32+ ; //This is used for all the small buttons (Like the save load buttons for the campaigns
33+ HeaderTemplate ButtonSmall
34+ Font = " Arial"
35+ Point = 10
36+ Bold = No
37+ End
38+
39+ ; // wherever we enter text we'll try to always use this
40+ HeaderTemplate TextEntry
41+ Font = " Arial"
42+ Point = 10
43+ Bold = No
44+ End
45+
46+ ; // wherever we enter text we'll try to always use this
47+ HeaderTemplate ComboBoxEntry
48+ Font = " Arial"
49+ Point = 10
50+ Bold = No
51+ End
52+
53+ ; // Used for all sub headings
54+ HeaderTemplate MinorTitle
55+ Font = " Placard MT Condensed"
56+ Point = 14
57+ Bold = No
58+ End
59+
60+ ; // Used wherever we have static text labels (for example, all the score screen player information
61+ HeaderTemplate LabelRegular
62+ Font = " Arial"
63+ Point = 10
64+ Bold = No
65+ End
66+
67+ ; // Used wherever we have small static text labels (for example, On the side select window)
68+ HeaderTemplate LabelSmall
69+ Font = " Arial"
70+ Point = 8
71+ Bold = No
72+ End
73+
74+ ; // Used only on the loadscreen under the cameos that popup partway through the load movie
75+ HeaderTemplate LoadScreenCameos
76+ Font = " Arial"
77+ Point = 8
78+ Bold = No
79+ End
80+
81+ ; // Used only on the loadscreen located at the bottom of the zoomed in map
82+ HeaderTemplate LoadScreenMissionLocation
83+ Font = " Placard MT Condensed"
84+ Point = 14
85+ Bold = No
86+ End
0 commit comments