diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-21 20:19:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-21 20:19:42 +0300 |
commit | fb0dad2c1b014efe72f67a9da149083aee703f92 (patch) | |
tree | dff380a2f4e6cbba8ee8f24fca1c6636d2814460 /src/gui/windows/npcdialog.h | |
parent | 1b2f49cb65200eaab379fed577f61277d2b2ebba (diff) | |
download | plus-fb0dad2c1b014efe72f67a9da149083aee703f92.tar.gz plus-fb0dad2c1b014efe72f67a9da149083aee703f92.tar.bz2 plus-fb0dad2c1b014efe72f67a9da149083aee703f92.tar.xz plus-fb0dad2c1b014efe72f67a9da149083aee703f92.zip |
Add support for send item indexes to server. Change protocol version to 11.
Diffstat (limited to 'src/gui/windows/npcdialog.h')
-rw-r--r-- | src/gui/windows/npcdialog.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/windows/npcdialog.h b/src/gui/windows/npcdialog.h index 3bc2aabcb..fcd4b7e15 100644 --- a/src/gui/windows/npcdialog.h +++ b/src/gui/windows/npcdialog.h @@ -163,6 +163,8 @@ class NpcDialog final : public Window, void itemRequest(const int size); + void itemIndexRequest(const int size); + void move(const int amount); void setVisible(Visible visible) override final; @@ -278,7 +280,8 @@ class NpcDialog final : public Window, NPC_INPUT_LIST, NPC_INPUT_STRING, NPC_INPUT_INTEGER, - NPC_INPUT_ITEM + NPC_INPUT_ITEM, + NPC_INPUT_ITEM_INDEX }; enum NpcActionState |