20 lines
477 B
Java
20 lines
477 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(3000);
|
|
System.out.println("sound");
|
|
SoundHandler.playSound("hit");
|
|
SoundHandler.setSoundOn(false);
|
|
System.out.println("sound off");
|
|
SoundHandler.playSound("hit");
|
|
|
|
|
|
}
|
|
}
|