mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-02-05 15:02:54 +08:00
15 lines
272 B
Java
15 lines
272 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;
|
||
|
}
|
||
|
}
|