/** * File : Space.java * Desc : what shape is the pit? * Hist * 2004-02-22 : @author Douglas Reay */ /** Return a valid random point from within the space */ public interface Space { public Point getPoint(int dimensions); public String toString(int dimensions); } // End of File