Mercurial > mm7
annotate Autonotes.h @ 2364:94e5a9740727
OutdoorLocation::UpdateDiscoveredArea cleaned up
author | Grumpy7 |
---|---|
date | Sun, 11 May 2014 22:49:19 +0200 |
parents | 0665a061132b |
children |
rev | line source |
---|---|
0 | 1 #pragma once |
1202 | 2 #include <array> |
0 | 3 |
4 | |
5 | |
6 /* 351 */ | |
7 enum AUTONOTE_TYPE : __int32 | |
8 { | |
981 | 9 AUTONOTE_POTION_RECEPIE = 0, |
10 AUTONOTE_STAT_HINT = 1, | |
11 AUTONOTE_OBELISK = 2, | |
12 AUTONOTE_SEER = 3, | |
13 AUTONOTE_MISC = 4, | |
14 AUTONOTE_TEACHER = 5, | |
0 | 15 }; |
16 | |
17 /* 350 */ | |
18 #pragma pack(push, 1) | |
19 struct Autonote | |
20 { | |
981 | 21 const char *pText; |
22 AUTONOTE_TYPE eType; | |
0 | 23 }; |
24 #pragma pack(pop) | |
1310 | 25 extern std::array<Autonote, 196> pAutonoteTxt; // weak |