This commit is contained in:
manzerbredes 2016-03-21 18:02:31 +01:00
parent f453154938
commit 0e1704bbcb
4 changed files with 71 additions and 21 deletions

View file

@ -26,11 +26,16 @@ public class Main {
gr.display();
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
while(true){
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
g.buildRandomLink();
System.out.println("Update !");
gr.update();
}
}