class documentation

class GameEntry:

View In Hierarchy

Represents one entry of a list of high scores.

Method __init__ Create an entry with given name and score.
Method __str__ Return string representation of the entry.
Method get_name Return the name of the person for this entry.
Method get_score Return the score of this entry.
Instance Variable _name Undocumented
Instance Variable _score Undocumented
def __init__(self, name, score):

Create an entry with given name and score.

def __str__(self):

Return string representation of the entry.

def get_name(self):

Return the name of the person for this entry.

def get_score(self):

Return the score of this entry.

_name =

Undocumented

_score =

Undocumented