diff options
Diffstat (limited to 'src/map/script.h')
-rw-r--r-- | src/map/script.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/script.h b/src/map/script.h index 5a031e9f5..89759db30 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -727,9 +727,13 @@ struct str_data_struct { uint8 deprecated : 1; }; +/** a label within a script (does not use the label db) */ struct script_label_entry { + /** label name (held within str_data) */ int key; + /** position within the script */ int pos; + /** optional flags for the label */ enum script_label_flags flags; }; |