mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-25 06:57:28 +00:00
24 lines
688 B
C++
24 lines
688 B
C++
#pragma once
|
|
|
|
// Custom Classes
|
|
#include "CDTable.h"
|
|
|
|
struct CDLevelProgressionLookup {
|
|
uint32_t id; //!< The Level ID
|
|
uint32_t requiredUScore; //!< The required LEGO Score
|
|
std::string BehaviorEffect; //!< The behavior effect attached to this
|
|
};
|
|
|
|
class CDLevelProgressionLookupTable : public CDTable<CDLevelProgressionLookupTable> {
|
|
private:
|
|
std::vector<CDLevelProgressionLookup> entries;
|
|
|
|
public:
|
|
void LoadValuesFromDatabase();
|
|
|
|
// Queries the table with a custom "where" clause
|
|
std::vector<CDLevelProgressionLookup> Query(std::function<bool(CDLevelProgressionLookup)> predicate);
|
|
|
|
const std::vector<CDLevelProgressionLookup>& GetEntries() const;
|
|
};
|