ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
staticres.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef VOYEUR_STATICRES_H
23 #define VOYEUR_STATICRES_H
24 
25 #include "common/scummsys.h"
26 
27 namespace Voyeur {
28 
29 extern const int COMPUTER_DEFAULTS[];
30 
31 extern const int RESOLVE_TABLE[];
32 
33 extern const int LEVEL_H[];
34 
35 extern const int LEVEL_M[];
36 
37 extern const int BLIND_TABLE[];
38 
39 extern const int COMPUTER_SCREEN_TABLE[];
40 
41 extern const char *const SZ_FILENAMES[];
42 
43 extern const char *const SATURDAY_EN;
44 extern const char *const SUNDAY_EN;
45 extern const char *const MONDAY_EN;
46 extern const char *const AM_EN;
47 extern const char *const PM_EN;
48 extern const char *const START_OF_MESSAGE_EN;
49 extern const char *const END_OF_MESSAGE_EN;
50 extern const char *const EVENT_TYPE_STRINGS_EN[4];
51 extern const char *const SATURDAY_AFTERNOON_EN;
52 extern const char *const PLAYER_APARTMENT_EN;
53 
54 extern const char *const SATURDAY_DE;
55 extern const char *const SUNDAY_DE;
56 extern const char *const MONDAY_DE;
57 extern const char *const AM_DE;
58 extern const char *const PM_DE;
59 extern const char *const START_OF_MESSAGE_DE;
60 extern const char *const END_OF_MESSAGE_DE;
61 extern const char *const EVENT_TYPE_STRINGS_DE[4];
62 extern const char *const SATURDAY_AFTERNOON_DE;
63 extern const char *const PLAYER_APARTMENT_DE;
64 
65 extern int DOT_LINE_START[9];
66 extern int DOT_LINE_OFFSET[9];
67 extern int DOT_LINE_LENGTH[9];
68 
69 extern const char *const PIRACY_MESSAGE_EN[];
70 extern const char *const PIRACY_MESSAGE_DE[];
71 
72 } // End of namespace Voyeur
73 
74 #endif
Definition: animation.h:38