Grasscutter/src/main/java/emu/grasscutter/game/managers/EnergyManager/SkillParticleGenerationInfo.java

15 lines
242 B
Java
Raw Normal View History

2022-05-26 07:59:49 +08:00
package emu.grasscutter.game.managers.EnergyManager;
public class SkillParticleGenerationInfo {
2022-05-26 10:06:17 +08:00
private int value;
private int chance;
2022-05-26 07:59:49 +08:00
2022-05-26 10:06:17 +08:00
public int getValue() {
return this.value;
}
2022-05-26 07:59:49 +08:00
2022-05-26 10:06:17 +08:00
public int getChance() {
return this.chance;
}
2022-05-26 07:59:49 +08:00
}