1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:48:12 +00:00

IRCClient: Add the "/me" command to send CTCP ACTION emotes :^)

You can now express your feelings and actions with our IRC client by
using the /me command.
This commit is contained in:
Andreas Kling 2020-09-07 18:52:47 +02:00
parent 3a4a9d4c6b
commit c460f4a3cb
3 changed files with 62 additions and 9 deletions

View file

@ -43,6 +43,7 @@ public:
String name() const { return m_name; }
void add_message(char prefix, const String& name, const String& text, Color = Color::Black);
void add_message(const String& text, Color = Color::Black);
void dump() const;