ScummVM API documentation
notelist.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 BAGEL_METAGAME_BGEN_NOTELIST_H
23 #define BAGEL_METAGAME_BGEN_NOTELIST_H
24 
25 namespace Bagel {
26 namespace HodjNPodj {
27 namespace Metagame {
28 
29 // note identifier definitions
30 #define NOTE_MANKALA 0
31 #define NOTE_ARCHEROIDS 1
32 #define NOTE_NOVACANCY 2
33 #define NOTE_ARTPARTS 3
34 #define NOTE_LIFE 4
35 #define NOTE_EVERYTHINGUNDERSUN 5
36 #define NOTE_FARMHOUSE 6
37 #define NOTE_MANSION 7
38 #define NOTE_WOODCUTTERSCOTTAGE 8
39 #define NOTE_POSTOFFICE 9
40 #define NOTE_GARFUNKLE 10
41 
42 #define NOTE_COUNT 11
43 
44 // note icon identifier definitions
45 #define NOTE_ICON_BASE 0
46 #define NOTE_ICON_BAT 0
47 #define NOTE_ICON_BUTTERFLY 1
48 #define NOTE_ICON_TURTLE 2
49 #define NOTE_ICON_SNAIL 3
50 #define NOTE_ICON_OWL 4
51 #define NOTE_ICON_JELLYFISH 5
52 #define NOTE_ICON_FISH 6
53 #define NOTE_ICON_ANT 7
54 #define NOTE_ICON_CRAB 8
55 #define NOTE_ICON_ARCHER 9
56 #define NOTE_ICON_INNKEEPER 10
57 #define NOTE_ICON_ARTIST 11
58 #define NOTE_ICON_PRIEST 12
59 #define NOTE_ICON_BANDIT 13
60 #define NOTE_ICON_FARMER 14
61 #define NOTE_ICON_ARISTOCRAT 15
62 #define NOTE_ICON_WOODCUTTER 16
63 #define NOTE_ICON_POSTMASTER 17
64 #define NOTE_ICON_LEOPOLD 18
65 #define NOTE_ICON_WITCH 19
66 #define NOTE_ICON_MERMAID 20
67 #define NOTE_ICON_BEAR 21
68 #define NOTE_ICON_PIRATE 22
69 #define NOTE_ICON_WARLOCK 23
70 #define NOTE_ICON_HERMIT 24
71 #define NOTE_ICON_MISHMOSH 25
72 #define NOTE_ICON_INN 26
73 #define NOTE_ICON_FIELD 27
74 #define NOTE_ICON_HOUSE 28
75 #define NOTE_ICON_ARTISTCOTTAGE 29
76 #define NOTE_ICON_TEMPLE 30
77 #define NOTE_ICON_HIDEOUT 31
78 #define NOTE_ICON_FARM 32
79 #define NOTE_ICON_MANSION 33
80 #define NOTE_ICON_CUTTERCOTTAGE 34
81 #define NOTE_ICON_POSTOFFICE 35
82 #define NOTE_ICON_THEATRE 36
83 
84 
85 #define NOTE_ICON_COUNT 37
86 
87 } // namespace Metagame
88 } // namespace HodjNPodj
89 } // namespace Bagel
90 
91 #endif
Definition: afxwin.h:27