Skip to content

Commit

Permalink
working new snake game
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmfranklin committed Dec 5, 2019
1 parent 197b3e3 commit d211b12
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Board.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ private void initBoard() {

private void loadImages() {

ImageIcon iid = new ImageIcon("src/resources/dot.png");
ImageIcon iid = new ImageIcon("dot.png");
ball = iid.getImage();

ImageIcon iia = new ImageIcon("src/resources/apple.png");
ImageIcon iia = new ImageIcon("apple.png");
apple = iia.getImage();

ImageIcon iih = new ImageIcon("src/resources/head.png");
ImageIcon iih = new ImageIcon("head.png");
head = iih.getImage();
}

Expand Down
Binary file added apple.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added head.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d211b12

Please sign in to comment.