mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-09-06 07:18:42 +00:00
22 lines
707 B
C++
22 lines
707 B
C++
#pragma once
|
|
|
|
// Custom Classes
|
|
#include "CDTable.h"
|
|
|
|
struct CDVendorComponent {
|
|
uint32_t id; //!< The Component ID
|
|
float buyScalar; //!< Buy Scalar (what does that mean?)
|
|
float sellScalar; //!< Sell Scalar (what does that mean?)
|
|
float refreshTimeSeconds; //!< The refresh time
|
|
uint32_t LootMatrixIndex; //!< LootMatrixIndex of the vendor's items
|
|
};
|
|
|
|
class CDVendorComponentTable : public CDTable<CDVendorComponentTable, std::vector<CDVendorComponent>> {
|
|
public:
|
|
void LoadValuesFromDatabase();
|
|
void LoadValuesFromDefaults();
|
|
// Queries the table with a custom "where" clause
|
|
std::vector<CDVendorComponent> Query(std::function<bool(CDVendorComponent)> predicate);
|
|
};
|
|
|