Mercurial > mm7
view Autonotes.h @ 2152:d44b7775fc06
Removed DirectDraw2 compatibility.
3D Sound enabled (change 3DSoundProvider registry entry to activate it).
Moved all forward declarations to mm7_unsorted_subs.h (many cpp files do not need them anyweay).
author | Nomad |
---|---|
date | Thu, 09 Jan 2014 01:37:34 +0200 |
parents | 0665a061132b |
children |
line wrap: on
line source
#pragma once #include <array> /* 351 */ enum AUTONOTE_TYPE : __int32 { AUTONOTE_POTION_RECEPIE = 0, AUTONOTE_STAT_HINT = 1, AUTONOTE_OBELISK = 2, AUTONOTE_SEER = 3, AUTONOTE_MISC = 4, AUTONOTE_TEACHER = 5, }; /* 350 */ #pragma pack(push, 1) struct Autonote { const char *pText; AUTONOTE_TYPE eType; }; #pragma pack(pop) extern std::array<Autonote, 196> pAutonoteTxt; // weak