mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-12 06:56:02 +08:00
* Generate energy drops for monsters + make sure picking up particles honors their count. * Use drop info from excels instead. * Remove double newline. * Remove commented code.
17 lines
327 B
Java
17 lines
327 B
Java
package emu.grasscutter.game.managers.EnergyManager;
|
|
|
|
import java.util.List;
|
|
|
|
public class EnergyDropEntry {
|
|
private int dropId;
|
|
private List<EnergyDropInfo> dropList;
|
|
|
|
public int getDropId() {
|
|
return this.dropId;
|
|
}
|
|
|
|
public List<EnergyDropInfo> getDropList() {
|
|
return this.dropList;
|
|
}
|
|
}
|