summaryrefslogtreecommitdiff
path: root/src/net/tmwa/inventoryhandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-17 22:11:13 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-17 22:11:13 +0300
commit9a40e1202946e3384500da28668a52d28ad377f4 (patch)
tree6b031263af767043249c8aa8b733e1cc84a0aa85 /src/net/tmwa/inventoryhandler.h
parentcd7c69edecf4b04ad7c2b40092d29b0444acfa28 (diff)
downloadplus-9a40e1202946e3384500da28668a52d28ad377f4.tar.gz
plus-9a40e1202946e3384500da28668a52d28ad377f4.tar.bz2
plus-9a40e1202946e3384500da28668a52d28ad377f4.tar.xz
plus-9a40e1202946e3384500da28668a52d28ad377f4.zip
Add static in inventoryhandler.
Diffstat (limited to 'src/net/tmwa/inventoryhandler.h')
-rw-r--r--src/net/tmwa/inventoryhandler.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/net/tmwa/inventoryhandler.h b/src/net/tmwa/inventoryhandler.h
index beaf560a2..23b8e0f4b 100644
--- a/src/net/tmwa/inventoryhandler.h
+++ b/src/net/tmwa/inventoryhandler.h
@@ -69,21 +69,21 @@ class InventoryHandler final : public MessageHandler,
void selectEgg(const Item *const item) const override final;
protected:
- void processPlayerEquipment(Net::MessageIn &msg);
+ static void processPlayerEquipment(Net::MessageIn &msg);
- void processPlayerInventoryAdd(Net::MessageIn &msg);
+ static void processPlayerInventoryAdd(Net::MessageIn &msg);
- void processPlayerInventory(Net::MessageIn &msg);
+ static void processPlayerInventory(Net::MessageIn &msg);
- void processPlayerStorage(Net::MessageIn &msg);
+ static void processPlayerStorage(Net::MessageIn &msg);
- void processPlayerEquip(Net::MessageIn &msg);
+ static void processPlayerEquip(Net::MessageIn &msg);
- void processPlayerUnEquip(Net::MessageIn &msg);
+ static void processPlayerUnEquip(Net::MessageIn &msg);
- void processPlayerStorageEquip(Net::MessageIn &msg);
+ static void processPlayerStorageEquip(Net::MessageIn &msg);
- void processPlayerStorageAdd(Net::MessageIn &msg);
+ static void processPlayerStorageAdd(Net::MessageIn &msg);
};
} // namespace TmwAthena