CommandPanels/src/me/rockyhawk/commandpanels/openwithitem/HotbarPlayerManager.java
2023-04-30 13:22:01 +10:00

21 lines
431 B
Java

package me.rockyhawk.commandpanels.openwithitem;
import me.rockyhawk.commandpanels.api.Panel;
import java.util.HashMap;
public class HotbarPlayerManager {
public HashMap<String,Panel> list = new HashMap<>();
public HotbarPlayerManager(){
}
public void addSlot(String slot, Panel panel){
list.put(slot,panel);
}
public Panel getPanel(String slot){
return list.get(slot).copy();
}
}