This commit is contained in:
Kruss
2020-04-17 15:29:13 +02:00
parent 4be2e967d9
commit abee11dae3
3 changed files with 31 additions and 11 deletions

23
src/main/Plateau.java Normal file
View File

@@ -0,0 +1,23 @@
package main;
import java.util.HashMap;
import java.util.Map;
public class Plateau {
private Map<String, Integer> stats = new HashMap<>();
public int rollDices6() {
return roll6() + roll6();
}
public int roll6() {
return 0;
}
public int rollDices4() {
return 0;
}
}