view Autonotes.h @ 1251:7ef8ae7ce42a

Player::SetVariable cleanup - moved around some cases to group similar types together, some cases reordered according to enum values
author Grumpy7
date Tue, 11 Jun 2013 15:24:05 +0200
parents 0dbf6c4dd029
children 0665a061132b
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, 195> pAutonoteTxt; // weak