1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-30 05:07:46 +00:00
sapphire/src/world/Manager/ShopMgr.h
2020-03-01 11:58:26 +11:00

11 lines
No EOL
244 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 );
};
}