mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-26 15:33:34 +00:00
9655f0ee45
fix compile issues
15 lines
283 B
C++
15 lines
283 B
C++
#ifndef ILEADERBOARD_H
|
|
#define ILEADERBOARD_H
|
|
|
|
#include <cstdint>
|
|
#include <optional>
|
|
|
|
class ILeaderboard {
|
|
public:
|
|
|
|
// Get the donation total for the given activity id.
|
|
virtual std::optional<uint32_t> GetDonationTotal(const uint32_t activityId) = 0;
|
|
};
|
|
|
|
#endif //!ILEADERBOARD_H
|