1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 02:51:27 +00:00

Implement score leaderboard fetching

This commit is contained in:
2015-07-27 14:03:14 -04:00
parent 3c9c2f2787
commit 8d284b222f
10 changed files with 281 additions and 9 deletions

View File

@ -84,8 +84,9 @@ public:
void TransferPoints(pfGameScore* to, plKey rcvr = nil) { TransferPoints(to, fValue, rcvr); }
void TransferPoints(pfGameScore* to, int32_t points, plKey rcvr = nil);
static void Create(uint32_t ownerId, const plString& name, uint32_t type, int32_t value, plKey rcvr);
static void Find(uint32_t ownerId, const plString& name, plKey rcvr);
static void Create(uint32_t ownerId, const plString& name, uint32_t type, int32_t value, const plKey& rcvr);
static void Find(uint32_t ownerId, const plString& name, const plKey& rcvr);
static void FindHighScores(uint32_t ageId, uint32_t maxScores, const plString& name, const plKey& rcvr);
};
#endif // _pfGameScoreMgr_h_