mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-26 15:33:34 +00:00
9655f0ee45
fix compile issues
14 lines
356 B
C++
14 lines
356 B
C++
#ifndef IACCOUNTSREWARDCODES_H
|
|
#define IACCOUNTSREWARDCODES_H
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
class IAccountsRewardCodes {
|
|
public:
|
|
virtual void InsertRewardCode(const uint32_t account_id, const uint32_t reward_code) = 0;
|
|
virtual std::vector<uint32_t> GetRewardCodesByAccountID(const uint32_t account_id) = 0;
|
|
};
|
|
|
|
#endif //!IACCOUNTSREWARDCODES_H
|