// @topic S-0301-01-24-30 mazegame v.1 java interface demo
// @brief interface IWall provides methods to interact with parts of the room configuration

package mazegame;

public interface IWall {
    
    boolean hasDoor();
    
}//interface IWall