mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-18 20:40:06 +08:00
15 lines
235 B
Java
15 lines
235 B
Java
package emu.grasscutter.game.managers.energy;
|
|
|
|
public class SkillParticleGenerationInfo {
|
|
private int value;
|
|
private int chance;
|
|
|
|
public int getValue() {
|
|
return this.value;
|
|
}
|
|
|
|
public int getChance() {
|
|
return this.chance;
|
|
}
|
|
}
|