mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-07-07 04:00:02 +00:00
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
|