diff options
Diffstat (limited to 'src/discord/voicestateflags.hpp')
| -rw-r--r-- | src/discord/voicestateflags.hpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/discord/voicestateflags.hpp b/src/discord/voicestateflags.hpp deleted file mode 100644 index 01fb762..0000000 --- a/src/discord/voicestateflags.hpp +++ /dev/null @@ -1,18 +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, -}; - -template<> -struct Bitwise<VoiceStateFlags> { - static const bool enable = true; -}; |
