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

package MineSweeper;

/**
 *
 * @author Cecile
 */
interface ScoreRegistrar {
    public void registerScore(String name,int time);
}

