programmieren-projekt/src/HalloSchiffeVersenken.java

20 lines
404 B
Java

public class HalloSchiffeVersenken {
public static void main(String[] args) throws InterruptedException {
System.out.println("HelloSchiffeVersenekn");
System.out.println("sound");
SoundHandler.playSound("hit");
Thread.sleep(10000);
SoundHandler.setSoundOn(false);
System.out.println("sound off");
SoundHandler.playSound("hit");
}
}