mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-29 07:37:45 +00:00
19 lines
482 B
C++
19 lines
482 B
C++
![]() |
#include "MarketMgr.h"
|
||
|
|
||
|
Sapphire::World::Manager::MarketMgr::MarketMgr( Sapphire::FrameworkPtr pFw ) :
|
||
|
BaseManager( pFw )
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
bool Sapphire::World::Manager::MarketMgr::init()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void Sapphire::World::Manager::MarketMgr::searchMarketboard( Entity::Player& player,
|
||
|
uint8_t itemSearchCategory, uint8_t maxEquipLevel,
|
||
|
uint8_t classJob )
|
||
|
{
|
||
|
|
||
|
}
|