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

12 lines
307 B
C
Raw Normal View History

2018-11-24 15:17:18 +11:00
#include "ForwardsZone.h"
#include "BaseManager.h"
2018-11-24 15:17:18 +11:00
namespace Sapphire::World::Manager
{
class ShopMgr : public Manager::BaseManager
2018-11-24 15:17:18 +11:00
{
public:
ShopMgr( FrameworkPtr pFw );
bool purchaseGilShopItem( Sapphire::Entity::Player& player, uint32_t shopId, uint16_t itemId, uint32_t quantity );
2018-11-24 15:17:18 +11:00
};
}