//package uk.ac.lancs.unix.cotton.tetris;

/**
 * An interface for classes wishing to use the Alarm.
 *@see Alarm
 */
public interface AlarmUser
{
  /**
   * Method called by Alarm
   */
  abstract void alarmCall();
}

