aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/polyfrost/oneconfig/gui/elements/SearchField.java
blob: 6f460d6b208fce9f12e5155eb052e19baf7257ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cc.polyfrost.oneconfig.gui.elements;

public class SearchField extends TextInputField {

    public SearchField(int width, int height, String defaultText, boolean multiLine, boolean password) {
        super(width, height, defaultText, multiLine, password);
    }

    @Override
    public void draw(long vg, int x, int y) {
        super.draw(vg, x, y);
        // TODO
    }
}