mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-09 12:17:45 +00:00
12 lines
No EOL
307 B
C++
12 lines
No EOL
307 B
C++
#include "ForwardsZone.h"
|
|
#include "BaseManager.h"
|
|
|
|
namespace Sapphire::World::Manager
|
|
{
|
|
class ShopMgr : public Manager::BaseManager
|
|
{
|
|
public:
|
|
ShopMgr( FrameworkPtr pFw );
|
|
bool purchaseGilShopItem( Sapphire::Entity::Player& player, uint32_t shopId, uint16_t itemId, uint32_t quantity );
|
|
};
|
|
} |