We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fab3ed commit 52ff188Copy full SHA for 52ff188
src/Ant.java
@@ -19,7 +19,6 @@ public class Ant {
19
private Tile[][] tiles;
20
private Image antImage;
21
private LinkedList<Tile> path;
22
- private Graphics g;
23
24
private AStarSearch aStarSearch;
25
private LinkedList<LinkedList<Tile>> allPath2D = new LinkedList<LinkedList<Tile>>();
src/App.java
@@ -10,7 +10,7 @@ public class App {
10
public static void main(String[] args) throws Exception {
11
12
JFrame frame = new JFrame("Ant Path Finding with A* Algorithm");
13
- frame.setSize(1400, 900);
+ frame.setSize(1400, 800);
14
15
Game game = new Game(frame);
16
0 commit comments