mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
26 lines
503 B
C
26 lines
503 B
C
|
#pragma once
|
||
|
|
||
|
// Custom Classes
|
||
|
#include "CDTable.h"
|
||
|
|
||
|
|
||
|
struct CDRewardCode {
|
||
|
uint32_t id;
|
||
|
std::string code;
|
||
|
LOT attachmentLOT;
|
||
|
UNUSED(uint32_t locStatus);
|
||
|
UNUSED(std::string gate_version);
|
||
|
};
|
||
|
|
||
|
|
||
|
class CDRewardCodesTable : public CDTable<CDRewardCodesTable> {
|
||
|
private:
|
||
|
std::vector<CDRewardCode> entries;
|
||
|
|
||
|
public:
|
||
|
void LoadValuesFromDatabase();
|
||
|
const std::vector<CDRewardCode>& GetEntries() const;
|
||
|
LOT GetAttachmentLOT(uint32_t rewardCodeId) const;
|
||
|
uint32_t GetCodeID(std::string code) const;
|
||
|
};
|