StartGUI.h 291 B

123456789101112131415161718
  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::Input& address;
  7. BaseGUI::Input& test;
  8. public:
  9. StartGUI(BaseGUI b);
  10. void tick();
  11. void render(float lag, ShaderMatrix& sm, Renderer& r);
  12. };
  13. #endif