Skip to content
Snippets Groups Projects
Commit 358f980a authored by Mike Li's avatar Mike Li
Browse files

Added executable jar file

parent 78d8aa71
No related branches found
No related tags found
No related merge requests found
Snake Revamped/ArrowKeys.png

3.33 KiB

Snake Revamped/MainMenuBackground.png

8.36 KiB

File moved
File added
No preview for this file type
Snake Revamped/snakeIcon.jpg

16.2 KiB

File added
......@@ -56,9 +56,9 @@ public class ThreadsController extends Thread {
private boolean autoReplayMode = false; // !< Track if the auto replay mode is enabled
private boolean soundMode = false; // !< Track if sound is enabled
public static File file = new File("point.wav"); // !< Sound for winning a point
public static File fileD = new File("death.wav"); // !< Sound of a snake death
public static File fileW = new File("win.wav"); // !< Sound for a snake win
public static File file = new File("./point.wav"); // !< Sound for winning a point
public static File fileD = new File("./death.wav"); // !< Sound of a snake death
public static File fileW = new File("./win.wav"); // !< Sound for a snake win
AudioInputStream audioStream; // !< Audio input stream for playing the various sounds
Clip clip; // !< Clip used for playing the various sounds
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment