forked from igroglaz/a2mgr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h
59 lines (41 loc) · 1.3 KB
/
config.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#pragma once
#include <string>
#define SCREENTYPE_PNG 0
#define SCREENTYPE_JPG 1
#define SCREENTYPE_BMP 2
#define SCREENTYPE_GIF 3
extern unsigned long v_screentype;
extern unsigned long g_scrollintv;
extern bool r_fps;
extern bool r_time;
extern bool r_stopwatch;
extern bool show_stopwatch;
extern unsigned long show_stopwatch_frozen;
extern bool r_grid;
extern bool g_altchat;
extern unsigned long r_width;
extern unsigned long r_height;
extern unsigned long z_resolution;
extern bool z_logsdir;
extern bool z_screendir;
extern bool z_russian;
extern bool z_lang_override;
extern unsigned long net_key;
extern unsigned long net_maxplayers;
extern unsigned long r_grid_color;
extern unsigned long z_handle;
extern unsigned long crc32_allods2_exe;
extern unsigned long crc32_a2mgr_dll;
extern unsigned long crc32_patch_res;
extern unsigned long crc32_world_res;
extern unsigned long crc32_graphics_res;
extern unsigned char sha1_allods2_exe[20];
extern unsigned char sha1_a2mgr_dll[20];
extern unsigned char sha1_patch_res[20];
extern unsigned char sha1_world_res[20];
extern unsigned char sha1_graphics_res[20];
extern unsigned char sha1_uuid[20];
extern std::string current_directory;
extern int z_softcore;
#define PROTO_VER 20
void ParseConfig();