mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-26 12:25:11 +08:00
15 lines
242 B
Java
15 lines
242 B
Java
package emu.grasscutter.game.managers.EnergyManager;
|
|
|
|
public class SkillParticleGenerationInfo {
|
|
private int value;
|
|
private int chance;
|
|
|
|
public int getValue() {
|
|
return this.value;
|
|
}
|
|
|
|
public int getChance() {
|
|
return this.chance;
|
|
}
|
|
}
|