diff options
-rw-r--r-- | src/map/npc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/npc.h b/src/map/npc.h index a73a3ae06..16d7a984b 100644 --- a/src/map/npc.h +++ b/src/map/npc.h @@ -56,9 +56,14 @@ enum npc_shop_types { struct npc_timerevent_list { int timer,pos; }; + +/** list of labels within a NPC (used internally by the label db) */ struct npc_label_list { + /** label name */ char name[NAME_LENGTH]; + /** start point within the script */ int pos; + /** optional label flags */ enum script_label_flags flags; }; |