/**
 * File          : Points.java
 * Desc          : The methods a set of pebbles must have in common
 *                 for a pit object to interface with it.
 * Hist
 *   2004-02-22  : @author Douglas Reay
 */

/** Return a valid random point from within the space */
public interface Points {
    /** Called by the constructor.  Not all arguments may be valid */
    public void setup( int numPebbles, int numDimensions, Space shape);
    /** Returns yes or no */
    public boolean isMatchPebbleInCenter();
}

// End of File