mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 04:08:20 +00:00
28 lines
802 B
C++
28 lines
802 B
C++
#pragma once
|
|
|
|
// Custom Classes
|
|
#include "CDTable.h"
|
|
|
|
struct CDMissionNPCComponent {
|
|
uint32_t id; //!< The ID
|
|
uint32_t 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
|
|
};
|
|
|
|
class CDMissionNPCComponentTable : public CDTable<CDMissionNPCComponentTable> {
|
|
private:
|
|
std::vector<CDMissionNPCComponent> entries;
|
|
|
|
public:
|
|
void LoadValuesFromDatabase();
|
|
// Queries the table with a custom "where" clause
|
|
std::vector<CDMissionNPCComponent> Query(std::function<bool(CDMissionNPCComponent)> predicate);
|
|
|
|
// Gets all the entries in the table
|
|
const std::vector<CDMissionNPCComponent>& GetEntries() const;
|
|
|
|
};
|
|
|