Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Rubberduckycooly
GitHub Repository: Rubberduckycooly/RSDKv5-Decompilation
Path: blob/master/RSDKv5/RSDK/User/Steam/SteamLeaderboards.hpp
1185 views
1
#if RETRO_REV02
2
3
struct SteamLeaderboards : UserLeaderboards {
4
void FetchLeaderboard(LeaderboardID *leaderboard, bool32 isUser)
5
{
6
// fetch leaderboards from steam
7
}
8
void LoadLeaderboards()
9
{
10
// do a thing
11
}
12
void TrackScore(LeaderboardID *leaderboard, int32 score, void (*callback)(bool32 success, int32 rank))
13
{
14
// set leaderboard on steam
15
}
16
int32 GetStatus() { return status; }
17
};
18
19
#endif
20
21