parent
4bb6281855
commit
f42f02ceca
@ -1,4 +1,10 @@
|
|||||||
package model;
|
package model;
|
||||||
|
|
||||||
public class StratGenerationAleatoire {
|
import java.util.Random;
|
||||||
|
public class StratGenerationAleatoire extends StratGeneration{
|
||||||
|
@Override
|
||||||
|
int generer() {
|
||||||
|
Random random = new Random();
|
||||||
|
return -5+random.nextInt(40);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue