mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
24 lines
730 B
C++
24 lines
730 B
C++
#pragma once
|
|
|
|
// Custom Classes
|
|
#include "CDTable.h"
|
|
|
|
struct CDInventoryComponent {
|
|
uint32_t id; //!< The component ID for this object
|
|
uint32_t itemid; //!< The LOT of the object
|
|
uint32_t count; //!< The count of the items the object has
|
|
bool equip; //!< Whether or not to equip the item
|
|
};
|
|
|
|
class CDInventoryComponentTable : public CDTable<CDInventoryComponentTable> {
|
|
private:
|
|
std::vector<CDInventoryComponent> entries;
|
|
|
|
public:
|
|
void LoadValuesFromDatabase();
|
|
// Queries the table with a custom "where" clause
|
|
std::vector<CDInventoryComponent> Query(std::function<bool(CDInventoryComponent)> predicate);
|
|
|
|
const std::vector<CDInventoryComponent>& GetEntries() const;
|
|
};
|