mirror-chatterino2/src/messages/MessageParseArgs.hpp

14 lines
279 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 {
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;
bool isStaffOrBroadcaster = false;
2017-04-12 17:46:44 +02:00
};
} // namespace chatterino