This commit is contained in:
IlyaShurupov 2023-09-03 10:48:24 +03:00
parent b3d06906ff
commit b0d5226915
7 changed files with 317 additions and 52 deletions

View file

@ -4,10 +4,17 @@
namespace tp {
class ClientGUI {
enum { MESSAGE_SIZE = 1024 };
ChatAPI::Credentials mCredentials;
bool mInvalidCredentials = false;
char mMessageBuff[1000] {0};
String mActiveChatName = "Not Selected";
public:
ClientGUI() = default;
void draw(ChatAPI& api);
private:
void drawChat(ChatAPI& api);
};
}