Mercurial > mm7
annotate Engine/Autonotes.h @ 2575:a76d408c5132 tip
DrawTranslucent -> DrawTextureGrayShade
Removed old texture drawing stuff
author | a.parshin |
---|---|
date | Wed, 09 Mar 2016 01:39:52 +0200 |
parents | 68cdef6879a0 |
children |
rev | line source |
---|---|
2499 | 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 |