Mercurial > mm7
annotate Autonotes.h @ 2:89240115d392
MainMenuBtn(work)
author | Ritor1 |
---|---|
date | Sun, 13 Jan 2013 01:47:51 +0600 |
parents | 9c0607679772 |
children | a9e9c6989d04 |
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) | |
25 extern Autonote stru_723720[195]; // weak | |
26 |