/* @(#)Images.java 1.0 for local images 1 November 2004 */

import edu.neu.ccs.gui.*;
import java.awt.*;

/**
 * <p>The class Images encapsulates how the Concentration Game
 * obtains its images.</p>
 * 
 * <p>This version of the class is designed for use with the
 * Concentration application that accesses local images.</p>
 */
public class Images {
    
    public static Image[] getImages() {
        return ImageTools.readAllImages("./images");
    }
}