forked from mirror/OpenTTD
(svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
This commit is contained in:
15
variables.h
15
variables.h
@@ -36,6 +36,21 @@ VARDEF GameOptions _opt;
|
||||
// These are the options for the new game
|
||||
VARDEF GameOptions _new_opt;
|
||||
|
||||
enum {
|
||||
CF_NOEURO = 0,
|
||||
CF_ISEURO = 1,
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
uint16 rate;
|
||||
char separator;
|
||||
uint16 to_euro;
|
||||
char pre[16];
|
||||
char post[16];
|
||||
} CurrencySpec;
|
||||
|
||||
CurrencySpec _currency_specs[24];
|
||||
|
||||
// Current date
|
||||
VARDEF uint16 _date;
|
||||
VARDEF uint16 _date_fract;
|
||||
|
Reference in New Issue
Block a user