/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package tetris2;

/**
 *
 * @author Fmunch
 */
interface ScoreRegistrar {

  public void registerScore(String name, int time);
}

