mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
* First pass to enable trader 'Find Trader' functionality * Move SendBulkTraders out of zoning routines and send as part of the opening of the bazaar search window. Add zone instance to SendBulkTraders to support multi-instanced bazaars.
15 lines
323 B
C++
15 lines
323 B
C++
#ifndef EQEMU_BAZAAR_H
|
|
#define EQEMU_BAZAAR_H
|
|
|
|
#include <vector>
|
|
#include "shareddb.h"
|
|
|
|
class Bazaar {
|
|
public:
|
|
static std::vector<BazaarSearchResultsFromDB_Struct>
|
|
GetSearchResults(SharedDatabase &db, BazaarSearchCriteria_Struct search, unsigned int char_zone_id, int char_zone_instance_id);
|
|
};
|
|
|
|
|
|
#endif //EQEMU_BAZAAR_H
|