Merge branch 'development' of https://github.com/PTE-SH/ShadowHunterGame into development

This commit is contained in:
Paul Gross
2020-05-13 10:59:40 +02:00
7 changed files with 42 additions and 16 deletions

View File

@@ -375,6 +375,7 @@ public class Plateau extends Thread{
private int rollRandom(int nb) {
int roll = (int) Math.floor(Math.random() * (nb-1))+1;
System.out.println("roll" + roll);
return roll;
}