38 lines
586 B
Java
38 lines
586 B
Java
package keystrokesmod.clickgui.components;
|
|
|
|
public class Component {
|
|
|
|
public boolean isVisible = true;
|
|
|
|
public boolean isVisible() {
|
|
|
|
return isVisible;
|
|
}
|
|
|
|
public void render() {
|
|
}
|
|
|
|
public void drawScreen(int x, int y) {
|
|
}
|
|
|
|
public boolean onClick(int x, int y, int b) {
|
|
return false;
|
|
}
|
|
|
|
public void mouseReleased(int x, int y, int m) {
|
|
}
|
|
|
|
public void keyTyped(char t, int k) {
|
|
}
|
|
|
|
public void updateHeight(int n) {
|
|
}
|
|
|
|
public int getHeight() {
|
|
return 0;
|
|
}
|
|
|
|
public void onGuiClosed() {
|
|
}
|
|
}
|