/*
 * File: Playable.java
 * Author: Java, Java, Java
 * Description: This abstract interface defines the play()
 *  method, which controls the play of a specific game.
 */
public interface Playable {
    public abstract void play(UserInterface ui);
} // Playable

