1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-25 19:17:45 +00:00
sapphire/src/world/Manager/ShopMgr.h

13 lines
No EOL
450 B
C++

#include "ForwardsZone.h"
namespace Sapphire::World::Manager
{
class ShopMgr
{
public:
ShopMgr() = default;
bool purchaseGilShopItem( Sapphire::Entity::Player& player, uint32_t shopId, uint16_t itemId, uint32_t quantity );
bool shopSellItem( Sapphire::Entity::Player& player, uint32_t shopId, uint16_t containerId, uint16_t slotId );
bool shopBuyBack( Sapphire::Entity::Player& player, uint32_t shopId, uint16_t index );
};
}