DarkflameServer/dDatabase/Tables/CDMissionNPCComponentTable.h
David Markowitz 79094b6664 wow
2023-07-16 00:27:30 -07:00

28 lines
763 B
C++

#pragma once
// Custom Classes
#include "CDTable.h"
struct CDMissionNPCComponent {
unsigned int id; //!< The ID
unsigned int missionID; //!< The Mission ID
bool offersMission; //!< Whether or not this NPC offers a mission
bool acceptsMission; //!< Whether or not this NPC accepts a mission
std::string gate_version; //!< The gate version
};
namespace CDMissionNPCComponentTable {
private:
std::vector<CDMissionNPCComponent> entries;
public:
void LoadTableIntoMemory();
// Queries the table with a custom "where" clause
std::vector<CDMissionNPCComponent> Query(std::function<bool(CDMissionNPCComponent)> predicate);
// Gets all the entries in the table
std::vector<CDMissionNPCComponent> GetEntries(void) const;
};