DarkflameServer/dDatabase/CDClientDatabase/CDClientTables/CDActivityRewardsTable.h

28 lines
887 B
C
Raw Normal View History

#pragma once
// Custom Classes
#include "CDTable.h"
struct CDActivityRewards {
2022-07-28 13:39:57 +00:00
unsigned int objectTemplate; //!< The object template (?)
unsigned int ActivityRewardIndex; //!< The activity reward index
int activityRating; //!< The activity rating
unsigned int LootMatrixIndex; //!< The loot matrix index
unsigned int CurrencyIndex; //!< The currency index
unsigned int ChallengeRating; //!< The challenge rating
std::string description; //!< The description
};
class CDActivityRewardsTable : public CDTable<CDActivityRewardsTable> {
private:
2022-07-28 13:39:57 +00:00
std::vector<CDActivityRewards> entries;
public:
void LoadValuesFromDatabase();
// Queries the table with a custom "where" clause
2022-07-28 13:39:57 +00:00
std::vector<CDActivityRewards> Query(std::function<bool(CDActivityRewards)> predicate);
std::vector<CDActivityRewards> GetEntries() const;
2022-07-28 13:39:57 +00:00
};