Skip to content

Commit

Permalink
GUI UPDATE
Browse files Browse the repository at this point in the history
Sounds added
kopiert die drei *.wav-Dateien in den Ordner im target-Verzeichnis in dem der Klassenpfad der GUI-Klasse liegt.
  • Loading branch information
bjoernuhlig committed Jan 3, 2017
1 parent 0881c3a commit f2b2fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/htw_berlin/HoboOthello/GUI/Gameview.java
Expand Up @@ -527,7 +527,7 @@ public void playExitSound() {

public void playPloppSound() {
try {
InputStream inputStream = this.getClass().getResourceAsStream("Plopp.wav");
InputStream inputStream = this.getClass().getResourceAsStream("Drop.wav");
AudioStream audioStream = new AudioStream(inputStream);
AudioPlayer.player.start(audioStream);
} catch (Exception e){
Expand Down

0 comments on commit f2b2fc5

Please sign in to comment.