Skip to content
This repository has been archived by the owner on Aug 29, 2020. It is now read-only.

Plasma.py Leaderboard Stubs #94

Merged
merged 1 commit into from
Aug 1, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Python/plasma/Plasma.py
Original file line number Diff line number Diff line change
Expand Up @@ -2406,11 +2406,21 @@ def findAgeScores(scoreName, key):
"""Finds matching scores for this age"""
pass

@staticmethod
def findAgeHighScores(name, maxScores, key):
"""Finds the highest matching scores for the current age's owners"""
pass

@staticmethod
def findGlobalScores(scoreName, key):
"""Finds matching global scores"""
pass

@staticmethod
def findGlobalHighScores(name, maxScores, key):
"""Finds the highest matching scores"""
pass

@staticmethod
def findPlayerScores(scoreName, key):
"""Finds matching player scores"""
Expand Down