diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2024-03-12 04:15:21 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2024-03-12 04:15:21 -0400 |
commit | 98218dfde37ce595401a0c1446d9e40418cc15d6 (patch) | |
tree | 0bbd088229804c4317f33cccb71e14a07d9a9e17 /src/discord/channel.hpp | |
parent | b3a8356e6bb0c5adf40ca68a4a5daf50ef2ada26 (diff) | |
download | abaddon-portaudio-98218dfde37ce595401a0c1446d9e40418cc15d6.tar.gz abaddon-portaudio-98218dfde37ce595401a0c1446d9e40418cc15d6.zip |
initial stages stuff
Diffstat (limited to 'src/discord/channel.hpp')
-rw-r--r-- | src/discord/channel.hpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/discord/channel.hpp b/src/discord/channel.hpp index cac8b4c..ebf67b0 100644 --- a/src/discord/channel.hpp +++ b/src/discord/channel.hpp @@ -27,22 +27,6 @@ enum class ChannelType : int { GUILD_MEDIA = 16, }; -enum class StagePrivacy { - PUBLIC = 1, - GUILD_ONLY = 2, -}; - -constexpr const char *GetStagePrivacyDisplayString(StagePrivacy e) { - switch (e) { - case StagePrivacy::PUBLIC: - return "Public"; - case StagePrivacy::GUILD_ONLY: - return "Guild Only"; - default: - return "Unknown"; - } -} - // should be moved somewhere? struct ThreadMetadataData { |