This commit is contained in:
2025-04-17 17:28:47 -05:00
parent a1e9401aaa
commit a79f40c66c
8 changed files with 135 additions and 4 deletions

View File

@@ -23,5 +23,11 @@ class ChatClient : public Archimedes::Module {
bool onEvent(const Archimedes::Event&);
private:
std::string messages;
std::string messages = "";
bool open = true;
};
#ifdef CHATCLIENT_DYNAMIC
#define MODULE_TYPE ChatClient
#include "endModule.h"
#endif