summaryrefslogtreecommitdiff
path: root/src/discord/voicestateflags.hpp
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2024-03-14 01:08:13 -0400
committerouwou <26526779+ouwou@users.noreply.github.com>2024-03-14 01:08:13 -0400
commit533157ece22c020dbf09d991b23d1cf4e5281e7a (patch)
tree2bf4aaf440307113cb0f36d45aa9783462985bc9 /src/discord/voicestateflags.hpp
parent019ae0428bc3ad878dffa6218eb03b96457d7dcb (diff)
downloadabaddon-portaudio-533157ece22c020dbf09d991b23d1cf4e5281e7a.tar.gz
abaddon-portaudio-533157ece22c020dbf09d991b23d1cf4e5281e7a.zip
preliminary speaker checks
Diffstat (limited to 'src/discord/voicestateflags.hpp')
-rw-r--r--src/discord/voicestateflags.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/discord/voicestateflags.hpp b/src/discord/voicestateflags.hpp
deleted file mode 100644
index e725d9a..0000000
--- a/src/discord/voicestateflags.hpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-#include <cstdint>
-#include "misc/bitwise.hpp"
-
-enum class VoiceStateFlags : uint8_t {
- Clear = 0,
- Deaf = 1 << 0,
- Mute = 1 << 1,
- SelfDeaf = 1 << 2,
- SelfMute = 1 << 3,
- SelfStream = 1 << 4,
- SelfVideo = 1 << 5,
- Suppressed = 1 << 6,
-};
-
-template<>
-struct Bitwise<VoiceStateFlags> {
- static const bool enable = true;
-};