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

24 lines
606 B
C++

#pragma once
#include "CDTable.h"
struct CDPropertyEntranceComponent {
uint32_t id;
uint32_t mapID;
std::string propertyName;
bool isOnProperty;
std::string groupType;
};
namespace CDPropertyEntranceComponentTable {
public:
void LoadTableIntoMemory();
// Queries the table with a custom "where" clause
CDPropertyEntranceComponent GetByID(uint32_t id);
// Gets all the entries in the table
[[nodiscard]] std::vector<CDPropertyEntranceComponent> GetEntries() const { return entries; }
private:
std::vector<CDPropertyEntranceComponent> entries{};
CDPropertyEntranceComponent defaultEntry{};
};