equal
deleted
inserted
replaced
1 /* $Id$ */ |
1 /* $Id$ */ |
2 |
2 |
3 #ifndef VARIABLES_H |
3 #ifndef VARIABLES_H |
4 #define VARIABLES_H |
4 #define VARIABLES_H |
|
5 |
|
6 #include "yapf/yapf_settings.h" |
5 |
7 |
6 // ********* START OF SAVE REGION |
8 // ********* START OF SAVE REGION |
7 #if !defined(MAX_PATH) |
9 #if !defined(MAX_PATH) |
8 # define MAX_PATH 260 |
10 # define MAX_PATH 260 |
9 #endif |
11 #endif |
201 uint32 npf_water_curve_penalty; /* The penalty for curves */ |
203 uint32 npf_water_curve_penalty; /* The penalty for curves */ |
202 uint32 npf_road_curve_penalty; /* The penalty for curves */ |
204 uint32 npf_road_curve_penalty; /* The penalty for curves */ |
203 uint32 npf_crossing_penalty; /* The penalty for level crossings */ |
205 uint32 npf_crossing_penalty; /* The penalty for level crossings */ |
204 |
206 |
205 bool population_in_label; // Show the population of a town in his label? |
207 bool population_in_label; // Show the population of a town in his label? |
|
208 |
|
209 /** YAPF settings */ |
|
210 YapfSettings yapf; |
|
211 |
206 } Patches; |
212 } Patches; |
207 |
213 |
208 VARDEF Patches _patches; |
214 VARDEF Patches _patches; |
209 |
215 |
210 |
216 |