summaryrefslogtreecommitdiff
path: root/src/notifications/notifications.hpp
blob: 5498938f128aac4ccf5e36065c36d8bac5148679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once
#include "notifier.hpp"

class Message;

class Notifications {
public:
    Notifications();

    void CheckMessage(const Message &message);

private:
    void NotifyMessageDM(const Message &message);
    void NotifyMessageGuild(const Message &message);

    [[nodiscard]] bool IsDND() const;

    Notifier m_notifier;
};