package emu.grasscutter.game.managers.EnergyManager; import java.util.List; public class EnergyDropEntry { private int dropId; private List dropList; public int getDropId() { return this.dropId; } public List getDropList() { return this.dropList; } }