DarkflameServer/dDatabase/CDClientDatabase/CDClientTables/CDPropertyEntranceComponentTable.h

24 lines
663 B
C
Raw Normal View History

#pragma once
#include "CDTable.h"
struct CDPropertyEntranceComponent {
2022-07-28 13:39:57 +00:00
uint32_t id;
uint32_t mapID;
std::string propertyName;
bool isOnProperty;
std::string groupType;
};
class CDPropertyEntranceComponentTable : public CDTable<CDPropertyEntranceComponentTable> {
public:
void LoadValuesFromDatabase();
// Queries the table with a custom "where" clause
2022-07-28 13:39:57 +00:00
CDPropertyEntranceComponent GetByID(uint32_t id);
// Gets all the entries in the table
[[nodiscard]] const std::vector<CDPropertyEntranceComponent>& GetEntries() const { return entries; }
private:
2022-07-28 13:39:57 +00:00
std::vector<CDPropertyEntranceComponent> entries{};
CDPropertyEntranceComponent defaultEntry{};
};