mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
18 lines
313 B
C++
18 lines
313 B
C++
#ifndef MESSAGEPARSEARGS_H
|
|
#define MESSAGEPARSEARGS_H
|
|
|
|
namespace chatterino {
|
|
namespace messages {
|
|
|
|
struct MessageParseArgs {
|
|
public:
|
|
bool disablePingSoungs = false;
|
|
bool isReceivedWhisper = false;
|
|
bool isSentWhisper = false;
|
|
bool includeChannelName = false;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif // MESSAGEPARSEARGS_H
|