class UI {
public:
    void clear();
    
    void drawTitle(const char * text);
    void drawLabel(const char * text);
    bool drawAndCheckButton(const char * text);

    void selectNextButton();
    void selectPreviousButton();
    void pressButton();
};
