Mercurial > mm7
comparison Engine/Autonotes.h @ 2499:68cdef6879a0
engine folder
author | Ritor1 |
---|---|
date | Fri, 19 Sep 2014 02:57:42 +0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2498:92eeeb5200f2 | 2499:68cdef6879a0 |
---|---|
1 #pragma once | |
2 #include <array> | |
3 | |
4 | |
5 | |
6 /* 351 */ | |
7 enum AUTONOTE_TYPE : __int32 | |
8 { | |
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, | |
15 }; | |
16 | |
17 /* 350 */ | |
18 #pragma pack(push, 1) | |
19 struct Autonote | |
20 { | |
21 const char *pText; | |
22 AUTONOTE_TYPE eType; | |
23 }; | |
24 #pragma pack(pop) | |
25 extern std::array<Autonote, 196> pAutonoteTxt; // weak |