/**
 * File          : PitVariant5.java
 * Desc          : Which problem is this?
 * Hist
 *   2004-02-22  : @author Douglas Reay
 */

public class PitVariant5 extends PitOriginal {

    /** The pebbles themselves */
    public Points getPoints() {
        return new PointsOneDrop( getPebbles(), getDimensions(), getSpace() );
    }    


    /** Command line entry point */
    public static void main(String[] args) {
        (new PitVariant5()).start();
    }
}


// End of File