diff options
Diffstat (limited to 'src/net/markethandler.h')
-rw-r--r-- | src/net/markethandler.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/markethandler.h b/src/net/markethandler.h index 13027024e..2037d95cf 100644 --- a/src/net/markethandler.h +++ b/src/net/markethandler.h @@ -26,9 +26,12 @@ #include "enums/simpletypes/itemcolor.h" #include <string> +#include <vector> #include "localconsts.h" +class ShopItem; + namespace Net { @@ -44,6 +47,8 @@ class MarketHandler notfinal const int type, const ItemColor color, const int amount) const = 0; + + virtual void buyItems(std::vector<ShopItem*> &items) const = 0; }; } // namespace Net |