2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDPropertyEntranceComponent {
|
|
|
|
uint32_t id;
|
|
|
|
uint32_t mapID;
|
|
|
|
std::string propertyName;
|
|
|
|
bool isOnProperty;
|
|
|
|
std::string groupType;
|
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDPropertyEntranceComponentTable : public CDTable<CDPropertyEntranceComponentTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-08-11 04:27:40 +00:00
|
|
|
void LoadValuesFromDatabase();
|
2023-03-17 14:36:21 +00:00
|
|
|
// Queries the table with a custom "where" clause
|
2021-12-05 17:54:36 +00:00
|
|
|
CDPropertyEntranceComponent GetByID(uint32_t id);
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
// Gets all the entries in the table
|
2023-08-11 04:27:40 +00:00
|
|
|
[[nodiscard]] const std::vector<CDPropertyEntranceComponent>& GetEntries() const { return entries; }
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
|
|
|
std::vector<CDPropertyEntranceComponent> entries{};
|
|
|
|
CDPropertyEntranceComponent defaultEntry{};
|
|
|
|
};
|