ModularPowersuits/src/main/java/net/machinemuse/general/gui/frame/IGuiFrame.java

18 lines
309 B
Java

package net.machinemuse.general.gui.frame;
import java.util.List;
public interface IGuiFrame {
void onMouseDown(double x, double y, int button);
void onMouseUp(double x, double y, int button);
void update(double mousex, double mousey);
void draw();
List<String> getToolTip(int x, int y);
}