001         package com.croftsoft.core.ai.astar;
002    
003         import com.croftsoft.core.math.geom.PointXY;
004    
005         /*********************************************************************
006         * Tests whether a point in space is available as an adjacent node.
007         *
008         * @version
009         *   2003-04-22
010         * @since
011         *   2003-04-22
012         * @author
013         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
014         *********************************************************************/
015    
016         public interface  SpaceTester
017         //////////////////////////////////////////////////////////////////////
018         //////////////////////////////////////////////////////////////////////
019         {
020    
021         public boolean  isSpaceAvailable ( PointXY  pointXY );
022    
023         //////////////////////////////////////////////////////////////////////
024         //////////////////////////////////////////////////////////////////////
025         }