27 lines
462 B
Java
27 lines
462 B
Java
package org.artisanlogiciel.games;
|
|
|
|
import java.io.File;
|
|
|
|
/**
|
|
* MazeParams was autogenerated by ./generate_newclass.sh
|
|
**/
|
|
public interface MazeParams
|
|
{
|
|
public int getWidth();
|
|
|
|
public int getHeight();
|
|
|
|
public int getMaxDepth();
|
|
|
|
/**
|
|
* @return name of Maze, used for creating filename at saving time
|
|
*/
|
|
public String getName();
|
|
|
|
/**
|
|
* @return directory owning where to save a maze
|
|
*/
|
|
public File getSaveDir();
|
|
|
|
}
|