Mercurial > mm7
annotate Autonotes.h @ 33:a9e9c6989d04
20.01.13
author | Ritor1 |
---|---|
date | Sun, 20 Jan 2013 18:57:23 +0600 |
parents | 9c0607679772 |
children | a6ef7125f6e4 |
rev | line source |
---|---|
0 | 1 #pragma once |
2 | |
3 | |
4 | |
5 | |
6 /* 351 */ | |
7 enum AUTONOTE_TYPE : __int32 | |
8 { | |
9 AUTONOTE_POTION_RECEPIE = 0x0, | |
10 AUTONOTE_STAT_HINT = 0x1, | |
11 AUTONOTE_OBELISK = 0x2, | |
12 AUTONOTE_SEER = 0x3, | |
13 AUTONOTE_MISC = 0x4, | |
14 AUTONOTE_TEACHER = 0x5, | |
15 }; | |
16 | |
17 /* 350 */ | |
18 #pragma pack(push, 1) | |
19 struct Autonote | |
20 { | |
21 const char *pText; | |
22 enum AUTONOTE_TYPE eType; | |
23 }; | |
24 #pragma pack(pop) | |
33 | 25 extern Autonote pAutonoteTxt[195]; // weak |
0 | 26 |