15 lines
312 B
Java
15 lines
312 B
Java
package com.josyf.commandbuttons.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);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|