
-add getter/setter for masterCommList -addSavedButtons correctly loads buttons from CommList instance
15 lines
310 B
Java
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);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|