Newer
Older
maze / src / main / MazeMain.java
@soloclouddeveloper soloclouddeveloper on 2 Feb 247 bytes initial commit
import net.curtlewis.maze.grid.Cell;

public class MazeMain {

    public static void main(String[] args) throws Exception {
        System.out.println("MazeMain...");
        Cell cell = new Cell(1, 2);
        System.out.println(cell);
    }

}