We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a34fbe commit b998b81Copy full SHA for b998b81
1 file changed
src/section5/ScaryMaze.java
@@ -19,11 +19,11 @@
19
public class ScaryMaze extends JPanel implements Runnable, MouseMotionListener {
20
21
BufferedImage maze;
22
- final int frameWidth = 800;
23
- final int frameHeight = 600;
+ final int frameWidth = 500;
+ final int frameHeight = 500;
24
25
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/
+ //1. Use this online tool to make a maze image and drop it into your section5 package: https://www.pixilart.com/
27
//maze = ImageIO.read(getClass().getResource("standardMaze.jpg"));
28
//2. Change the line of code above so that it matches your maze's file name
29
0 commit comments