mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-28 21:21:30 +00:00
14 lines
323 B
C++
14 lines
323 B
C++
#pragma once
|
|
|
|
#include "common/item_instance.h"
|
|
#include "common/shareddb.h"
|
|
|
|
#include <vector>
|
|
|
|
class Bazaar {
|
|
public:
|
|
static std::vector<BazaarSearchResultsFromDB_Struct>
|
|
GetSearchResults(Database &content_db, Database &db, BazaarSearchCriteria_Struct search, unsigned int char_zone_id, int char_zone_instance_id);
|
|
|
|
};
|