summaryrefslogtreecommitdiffstats
path: root/src/client/gui/Client.cpp
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2020-12-08 12:48:16 +0000
committerJoursoir <chat@joursoir.net>2020-12-08 12:48:16 +0000
commit27cd9aded215835ffde615153600476bf9be2473 (patch)
tree0018a18a3d1b5891321d8218001c02128af82380 /src/client/gui/Client.cpp
parentf7bd80577164da7540ad93fb2fa93df38168133b (diff)
downloadwant-chat-27cd9aded215835ffde615153600476bf9be2473.tar.gz
want-chat-27cd9aded215835ffde615153600476bf9be2473.tar.bz2
want-chat-27cd9aded215835ffde615153600476bf9be2473.zip
create base class for all client, add some functionality to gui
Diffstat (limited to 'src/client/gui/Client.cpp')
-rw-r--r--src/client/gui/Client.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client/gui/Client.cpp b/src/client/gui/Client.cpp
new file mode 100644
index 0000000..2465ab7
--- /dev/null
+++ b/src/client/gui/Client.cpp
@@ -0,0 +1,6 @@
+#include "Client.hpp"
+
+void Client::ShowMessage(const char *msg)
+{
+ chat->value(msg);
+} \ No newline at end of file