Joseph Garcia 98f84809f8 add button adds jsonObject to masterCommList
-add getter/setter for masterCommList
-addSavedButtons correctly loads buttons from CommList instance
2020-12-17 15:42:00 -06:00

15 lines
310 B
Java

package com.josyf.macrobuttons.gui;
import io.github.cottonmc.cotton.gui.GuiDescription;
import io.github.cottonmc.cotton.gui.client.CottonClientScreen;
public class ButtonGUIScreen extends CottonClientScreen {
public ButtonGUIScreen(GuiDescription description) {
super(description);
}
}