forked from Keriew/augustus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage_dialog.h
36 lines (32 loc) · 1.26 KB
/
message_dialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef WINDOW_MESSAGE_DIALOG_H
#define WINDOW_MESSAGE_DIALOG_H
enum {
MESSAGE_DIALOG_ABOUT = 0,
MESSAGE_DIALOG_HELP = 10,
MESSAGE_DIALOG_TOP_FUNDS = 15,
MESSAGE_DIALOG_TOP_POPULATION = 16,
MESSAGE_DIALOG_TOP_DATE = 17,
MESSAGE_DIALOG_OVERLAYS = 18,
MESSAGE_DIALOG_ADVISOR_LABOR = 20,
MESSAGE_DIALOG_ADVISOR_MILITARY = 21,
MESSAGE_DIALOG_ADVISOR_IMPERIAL = 22,
MESSAGE_DIALOG_ADVISOR_RATINGS = 23,
MESSAGE_DIALOG_ADVISOR_TRADE = 24,
MESSAGE_DIALOG_ADVISOR_POPULATION = 25,
MESSAGE_DIALOG_ADVISOR_HEALTH = 26,
MESSAGE_DIALOG_ADVISOR_EDUCATION = 27,
MESSAGE_DIALOG_ADVISOR_ENTERTAINMENT = 28,
MESSAGE_DIALOG_ADVISOR_RELIGION = 29,
MESSAGE_DIALOG_ADVISOR_FINANCIAL = 30,
MESSAGE_DIALOG_ADVISOR_CHIEF = 31,
MESSAGE_DIALOG_EMPIRE_MAP = 32,
MESSAGE_DIALOG_MESSAGES = 34,
MESSAGE_DIALOG_INDUSTRY = 46,
MESSAGE_DIALOG_THEFT = 251,
MESSAGE_DIALOG_EDITOR_ABOUT = 331,
MESSAGE_DIALOG_EDITOR_HELP = 332,
};
void window_message_dialog_show(int text_id, void (*background_callback)(void));
void window_message_dialog_show_city_message(int text_id, int year, int month,
int param1, int param2, int message_advisor, int use_popup);
#endif // WINDOW_MESSAGE_DIALOG_H