comparison Constants.lua @ 10:94bc939c2ca6

Minor refactoring. Added recording of quest-givers.
author James D. Callahan III <jcallahan@curse.com>
date Mon, 30 Apr 2012 17:14:23 -0500
parents d9375a473042
children 86f02232a9e5
comparison
equal deleted inserted replaced
9:796bf179557a 10:94bc939c2ca6
18 -- Constants. 18 -- Constants.
19 ----------------------------------------------------------------------- 19 -----------------------------------------------------------------------
20 private.UNIT_TYPES = { 20 private.UNIT_TYPES = {
21 PLAYER = 0, 21 PLAYER = 0,
22 OBJECT = 1, 22 OBJECT = 1,
23 UNKNOWN = 2,
23 NPC = 3, 24 NPC = 3,
24 PET = 4, 25 PET = 4,
25 VEHICLE = 5, 26 VEHICLE = 5,
27 }
28
29
30 private.UNIT_TYPE_NAMES = {
31 "PLAYER",
32 "OBJECT",
33 "UNKNOWN",
34 "NPC",
35 "PET",
36 "VEHICLE",
26 } 37 }
27 38
28 39
29 private.ACTION_TYPE_FLAGS = { 40 private.ACTION_TYPE_FLAGS = {
30 ITEM = 0x00000001, 41 ITEM = 0x00000001,