annotate Autonotes.h @ 110:430786d916d6

6.11.12 SaveLoad
author Ritor1
date Tue, 06 Nov 2012 17:30:24 +0600
parents 8b8875f5b359
children
rev   line source
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1 #pragma once
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
6 /* 351 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
7 enum AUTONOTE_TYPE : __int32
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
8 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
9 AUTONOTE_POTION_RECEPIE = 0x0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
10 AUTONOTE_STAT_HINT = 0x1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
11 AUTONOTE_OBELISK = 0x2,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
12 AUTONOTE_SEER = 0x3,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
13 AUTONOTE_MISC = 0x4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
14 AUTONOTE_TEACHER = 0x5,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
15 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
16
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
17 /* 350 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
18 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
19 struct Autonote
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
20 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
21 const char *pText;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
22 enum AUTONOTE_TYPE eType;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
23 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
24 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
25 extern Autonote stru_723720[195]; // weak
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
26