StartGUI.h 350 B

12345678910111213141516171819202122
  1. #ifndef START_GUI_H
  2. #define START_GUI_H
  3. #include "client/gui/BaseGUI.h"
  4. class StartGUI final {
  5. BaseGUI base;
  6. BaseGUI::Label& info;
  7. BaseGUI::Input& address;
  8. BaseGUI::Button& connect;
  9. public:
  10. StartGUI();
  11. void tick();
  12. void render();
  13. typedef StringBuffer<64> Address;
  14. bool getAddress(Address& a) const;
  15. };
  16. #endif