package io.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 } }