mirror of
https://github.com/Lucaslah/No-Report-Button.git
synced 2026-01-18 11:57:51 +00:00
10 lines
163 B
Java
10 lines
163 B
Java
package me.lucaslah.ncrb;
|
|
|
|
import java.util.List;
|
|
|
|
import net.minecraft.client.gui.Drawable;
|
|
|
|
public interface IScreen {
|
|
public List<Drawable> getButtons();
|
|
}
|