DarkflameServer/dDatabase/Tables/CDVendorComponentTable.h

23 lines
630 B
C
Raw Normal View History

#pragma once
// Custom Classes
#include "CDTable.h"
struct CDVendorComponent {
float buyScalar; //!< Buy Scalar (what does that mean?)
float sellScalar; //!< Sell Scalar (what does that mean?)
float refreshTimeSeconds; //!< The refresh time
unsigned int LootMatrixIndex; //!< LootMatrixIndex of the vendor's items
};
class CDVendorComponentTable : public CDTable<CDVendorComponentTable> {
private:
2023-07-26 04:29:06 +00:00
std::map<uint32_t, CDVendorComponent> entries;
public:
void LoadValuesFromDatabase();
// Queries the table with a custom "where" clause
2023-07-26 04:29:06 +00:00
const std::optional<CDVendorComponent> Query(uint32_t id);
};