Skip to content

Commit b998b81

Browse files
authored
Update ScaryMaze.java
Changed default size of frame and suggested art editor
1 parent 2a34fbe commit b998b81

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/section5/ScaryMaze.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
public class ScaryMaze extends JPanel implements Runnable, MouseMotionListener {
2020

2121
BufferedImage maze;
22-
final int frameWidth = 800;
23-
final int frameHeight = 600;
22+
final int frameWidth = 500;
23+
final int frameHeight = 500;
2424

2525
ScaryMaze() throws Exception {
26-
//1. Use this online tool to make a maze image and drop it into your section5 package: http://pixlr.com/editor/
26+
//1. Use this online tool to make a maze image and drop it into your section5 package: https://www.pixilart.com/
2727
//maze = ImageIO.read(getClass().getResource("standardMaze.jpg"));
2828
//2. Change the line of code above so that it matches your maze's file name
2929

0 commit comments

Comments
 (0)