mirror-chatterino2/src/messages/messageparseargs.hpp

15 lines
286 B
C++
Raw Normal View History

#pragma once
2017-04-12 17:46:44 +02:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
namespace messages {
2017-04-12 17:46:44 +02:00
struct MessageParseArgs {
bool disablePingSounds = false;
2017-04-12 17:46:44 +02:00
bool isReceivedWhisper = false;
bool isSentWhisper = false;
2018-06-04 12:23:23 +02:00
bool trimSubscriberUsername = false;
2017-04-12 17:46:44 +02:00
};
} // namespace messages
} // namespace chatterino