2013-12-04 22:25:34 -05:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2014-02-18 02:43:50 +01:00
|
|
|
*
|
2013-12-04 22:25:34 -05:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2014-02-18 02:43:50 +01:00
|
|
|
*
|
2013-12-04 22:25:34 -05:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VOYEUR_STATICRES_H
|
|
|
|
#define VOYEUR_STATICRES_H
|
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
|
|
|
|
namespace Voyeur {
|
|
|
|
|
|
|
|
extern const int COMPUTER_DEFAULTS[];
|
|
|
|
|
2013-12-07 20:44:28 -05:00
|
|
|
extern const int RESOLVE_TABLE[];
|
|
|
|
|
2013-12-11 00:11:02 -05:00
|
|
|
extern const int LEVEL_H[];
|
|
|
|
|
|
|
|
extern const int LEVEL_M[];
|
|
|
|
|
2013-12-10 09:19:54 -05:00
|
|
|
extern const int BLIND_TABLE[];
|
|
|
|
|
2014-03-07 08:04:33 +01:00
|
|
|
extern const int COMPUTER_SCREEN_TABLE[];
|
2013-12-11 00:11:02 -05:00
|
|
|
|
2013-12-26 07:30:46 +11:00
|
|
|
extern const char *const SZ_FILENAMES[];
|
2013-12-15 20:11:11 -05:00
|
|
|
|
2013-12-18 21:26:26 -05:00
|
|
|
extern const char *const SATURDAY;
|
|
|
|
extern const char *const SUNDAY;
|
|
|
|
extern const char *const MONDAY;
|
|
|
|
extern const char *const AM;
|
|
|
|
extern const char *const PM;
|
|
|
|
|
2013-12-24 16:32:50 +11:00
|
|
|
extern const char *const START_OF_MESSAGE;
|
|
|
|
extern const char *const END_OF_MESSAGE;
|
|
|
|
|
2013-12-25 14:08:37 +11:00
|
|
|
extern const char *const EVENT_TYPE_STRINGS[4];
|
|
|
|
|
2013-12-28 14:01:06 +11:00
|
|
|
extern int DOT_LINE_START[9];
|
|
|
|
extern int DOT_LINE_OFFSET[9];
|
|
|
|
extern int DOT_LINE_LENGTH[9];
|
|
|
|
|
2013-12-31 16:36:28 -10:00
|
|
|
extern const char *const PIRACY_MESSAGE[];
|
|
|
|
|
2013-12-04 22:25:34 -05:00
|
|
|
} // End of namespace Voyeur
|
|
|
|
|
|
|
|
#endif
|