From bbc67a79e34b3ff4ba044b1d0abad1cd022cd6ab Mon Sep 17 00:00:00 2001 From: turret Date: Sat, 30 Mar 2024 21:22:16 -0500 Subject: bits: add intents --- include/dbs/bits/intents.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 include/dbs/bits/intents.h diff --git a/include/dbs/bits/intents.h b/include/dbs/bits/intents.h new file mode 100644 index 0000000..0be87ed --- /dev/null +++ b/include/dbs/bits/intents.h @@ -0,0 +1,19 @@ +#define GUILDS (1 << 0) +#define GUILD_MEMBERS (1 << 1) +#define GUILD_MODERATION (1 << 2) +#define GUILD_EMOJIS_AND_STICKERS (1 << 3) +#define GUILD_INTEGRATIONS (1 << 4) +#define GUILD_WEBHOOKS (1 << 5) +#define GUILD_INVITES (1 << 6) +#define GUILD_VOICE_STATES (1 << 7) +#define GUILD_PRESENCES (1 << 8) +#define GUILD_MESSAGES (1 << 9) +#define GUILD_MESSAGE_REACTIONS (1 << 10) +#define GUILD_MESSAGE_TYPING (1 << 11) +#define DIRECT_MESSAGES (1 << 12) +#define DIRECT_MESSAGE_REACTIONS (1 << 13) +#define DIRECT_MESSAGE_TYPING (1 << 14) +#define MESSAGE_CONTENT (1 << 15) +#define GUILD_SCHEDULED_EVENTS (1 << 16) +#define AUTO_MODERATION_CONFIGURATION (1 << 20) +#define AUTO_MODERATION_EXECUTION (1 << 21) -- cgit v1.2.3