droplet 1.1.0
A multipurpose Discord bot with the hacker in mind
Loading...
Searching...
No Matches
SetChannelCommand.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <snowflake.h>
4
5#include <Bot.hpp>
6
7#include "IMemberCommand.hpp"
8
10 private:
11 dpp::snowflake welcome_channel_id;
12 dpp::snowflake goodbye_channel_id;
13 dpp::snowflake log_channel_id;
14
15 public:
17
18 virtual void on_slashcommand(const dpp::slashcommand_t& event) override;
19 virtual void on_guild_member_add(const dpp::guild_member_add_t& event) override;
20 virtual void on_guild_member_remove(const dpp::guild_member_remove_t& event) override;
21};
Definition IGlobalSlashCommand.hpp:9
Definition IMemberCommand.hpp:6
Definition SetChannelCommand.hpp:9
virtual void on_guild_member_add(const dpp::guild_member_add_t &event) override
Definition SetChannelCommand.cpp:85
virtual void on_guild_member_remove(const dpp::guild_member_remove_t &event) override
Definition SetChannelCommand.cpp:110
virtual void on_slashcommand(const dpp::slashcommand_t &event) override
Definition SetChannelCommand.cpp:24
SetChannelCommand()
Definition SetChannelCommand.cpp:14