Back to notes -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'  Slide program -- Keyboard shortcut: 't'    The class HighScoreEntry.Lecture 1 - slide 22 : 22
Program 2
abstract class HighScoreEntry {

  public abstract Player Player {
    get;
  } 

  public abstract int Score{
    get;
  } 
}