1 
2 /* ScummVM - Graphic Adventure Engine
3  *
4  * ScummVM is the legal property of its developers, whose names
5  * are too numerous to list here. Please refer to the COPYRIGHT
6  * file distributed with this source distribution.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * aint32 with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21  *
22  *
23  * Based on the original sources
24  *   Faery Tale II -- The Halls of the Dead
25  *   (c) 1993-1996 The Wyrmkeep Entertainment Co.
26  */
27 
28 #ifndef SAGA2_TAGNOISE_H
29 #define SAGA2_TAGNOISE_H
30 
31 namespace Saga2 {
32 
33 #define DOOR_LOCKED_NO_KEY  1
34 #define UNLOCK_WRONG_KEY    2
35 #define UNLOCK_RIGHT_KEY    3
36 #define DEFAULT_OPEN        4
37 #define DEFAULT_CLOSE       5
38 #define BEAM_ME_UP          6
39 
40 } // end of namespace Saga2
41 
42 #endif
43