#pragma once // Custom Classes #include "CDTable.h" struct CDLevelProgressionLookup { unsigned int id; //!< The Level ID unsigned int requiredUScore; //!< The required LEGO Score std::string BehaviorEffect; //!< The behavior effect attached to this }; class CDLevelProgressionLookupTable : public CDTable { private: std::vector entries; public: CDLevelProgressionLookupTable(); // Queries the table with a custom "where" clause std::vector Query(std::function predicate); // Gets all the entries in the table std::vector GetEntries(void) const; };