Ported to textfield

This commit is contained in:
InviseDivine
2026-03-10 21:37:12 +02:00
parent ae84705332
commit 2d17f9d152
5 changed files with 48 additions and 45 deletions

View File

@@ -3,6 +3,7 @@
#include "../Screen.h"
#include "../components/Button.h"
#include "client/gui/components/TextBox.h"
#include <string>
class UsernameScreen : public Screen
@@ -30,6 +31,7 @@ protected:
private:
Button _btnDone;
TextBox tUsername;
std::string _input;
int _cursorBlink;
};