#pragma once // Custom Classes #include "CDTable.h" struct CDItemSetSkills { uint32_t SkillSetID; //!< The skill set ID uint32_t SkillID; //!< The skill ID uint32_t SkillCastType; //!< The skill cast type }; class CDItemSetSkillsTable : public CDTable> { public: void LoadValuesFromDatabase(); // Queries the table with a custom "where" clause std::vector Query(std::function predicate); std::vector GetBySkillID(uint32_t SkillSetID); };