diff options
Diffstat (limited to 'src/net/vendinghandler.h')
-rw-r--r-- | src/net/vendinghandler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/vendinghandler.h b/src/net/vendinghandler.h index c8eed3bd3..797ef8340 100644 --- a/src/net/vendinghandler.h +++ b/src/net/vendinghandler.h @@ -22,10 +22,12 @@ #define NET_VENDINGHANDLER_H #include <string> +#include <vector> #include "localconsts.h" class Being; +class ShopItem; namespace Net { @@ -48,6 +50,10 @@ class VendingHandler notfinal const int vendId, const int index, const int amount) const = 0; + + virtual void createShop(const std::string &name, + const bool flag, + std::vector<ShopItem*> &items) const = 0; }; } // namespace Net |