update to v2.1.0

This commit is contained in:
Xanadu13
2023-07-26 17:25:06 +08:00
committed by GitHub
parent 057df60344
commit f4e8ad4920
99 changed files with 7635 additions and 0 deletions
@@ -0,0 +1,22 @@
package pers.xanadu.enderdragon.reward;
public class Chance {
private double value;
private String str;
public Chance(Chance chance){
str = chance.str;
value = chance.value;
}
public Chance(double d0,String str){
this.str = str;
this.value = d0;
}
public double getValue(){
return value;
}
public String getStr(){
return str;
}
}