├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-issue.yml │ └── config.yml └── workflows │ └── docker-image.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.md ├── SECURITY.md ├── TERMS_OF_SERVICE.md ├── docker └── Dockerfile ├── ext ├── achievements.json └── config.sample.json ├── pyproject.toml ├── renovate.json └── src ├── classes ├── __init__.py ├── bot.py ├── cog.py ├── exceptions.py ├── osudle.py └── pomice.py ├── cogs ├── __init__.py ├── admin.py ├── fun.py ├── images.py ├── information.py ├── music.py ├── osu.py ├── owner.py ├── premium.py ├── settings.py └── weather.py ├── common ├── __init__.py ├── crypto.py ├── graphing.py ├── helpers.py ├── humanizer.py ├── logging.py ├── osudaily.py ├── premium.py ├── regex.py └── weather.py ├── listeners ├── __init__.py ├── errorhandler.py ├── osulisteners.py └── voicelistener.py ├── models ├── __init__.py ├── config.py ├── deprecated │ ├── __init__.py │ └── server.py ├── enums │ ├── __init__.py │ └── animals.py ├── guild_settings.py ├── user.py ├── user_preferences.py └── weather.py ├── repository ├── __init__.py ├── beatmap.py ├── beatmapset.py ├── graph.py ├── guild_settings.py ├── osu.py ├── recording_preferences.py ├── stats.py ├── user.py └── user_preferences.py ├── run.py ├── service ├── __init__.py ├── beatmap.py ├── beatmapset.py ├── graph.py ├── guild_settings.py ├── recording_preferences.py ├── stats.py ├── user.py └── user_preferences.py ├── tasks ├── __init__.py └── cron.py └── ui ├── __init__.py ├── embeds ├── __init__.py ├── fun │ ├── __init__.py │ └── poll.py ├── generic │ ├── __init__.py │ ├── context.py │ └── interaction.py ├── information │ ├── __init__.py │ ├── botinfo.py │ ├── help.py │ ├── premium.py │ └── severinfo.py ├── music │ ├── __init__.py │ └── track.py ├── osu │ ├── __init__.py │ ├── beatmap.py │ ├── difficulty.py │ ├── link.py │ ├── profile.py │ ├── render.py │ ├── score.py │ └── skin.py └── weather │ ├── __init__.py │ └── info.py ├── icons ├── __init__.py ├── beatmap.py ├── gamemode.py └── score.py └── menus ├── __init__.py ├── generic ├── __init__.py └── view.py ├── music ├── __init__.py └── queue.py └── osu ├── __init__.py ├── osubeatmapview.py ├── osudleview.py ├── osuscoresview.py └── osuskinsview.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: niceaesth 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/.github/ISSUE_TEMPLATE/bug-issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TERMS_OF_SERVICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/TERMS_OF_SERVICE.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /ext/achievements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/ext/achievements.json -------------------------------------------------------------------------------- /ext/config.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/ext/config.sample.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/renovate.json -------------------------------------------------------------------------------- /src/classes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/classes/__init__.py -------------------------------------------------------------------------------- /src/classes/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/classes/bot.py -------------------------------------------------------------------------------- /src/classes/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/classes/cog.py -------------------------------------------------------------------------------- /src/classes/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/classes/exceptions.py -------------------------------------------------------------------------------- /src/classes/osudle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/classes/osudle.py -------------------------------------------------------------------------------- /src/classes/pomice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/classes/pomice.py -------------------------------------------------------------------------------- /src/cogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/cogs/__init__.py -------------------------------------------------------------------------------- /src/cogs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/cogs/admin.py -------------------------------------------------------------------------------- /src/cogs/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/cogs/fun.py -------------------------------------------------------------------------------- /src/cogs/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/cogs/images.py -------------------------------------------------------------------------------- /src/cogs/information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/cogs/information.py -------------------------------------------------------------------------------- /src/cogs/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/cogs/music.py -------------------------------------------------------------------------------- /src/cogs/osu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/cogs/osu.py -------------------------------------------------------------------------------- /src/cogs/owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/cogs/owner.py -------------------------------------------------------------------------------- /src/cogs/premium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/cogs/premium.py -------------------------------------------------------------------------------- /src/cogs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/cogs/settings.py -------------------------------------------------------------------------------- /src/cogs/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/cogs/weather.py -------------------------------------------------------------------------------- /src/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/common/__init__.py -------------------------------------------------------------------------------- /src/common/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/common/crypto.py -------------------------------------------------------------------------------- /src/common/graphing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/common/graphing.py -------------------------------------------------------------------------------- /src/common/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/common/helpers.py -------------------------------------------------------------------------------- /src/common/humanizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/common/humanizer.py -------------------------------------------------------------------------------- /src/common/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/common/logging.py -------------------------------------------------------------------------------- /src/common/osudaily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/common/osudaily.py -------------------------------------------------------------------------------- /src/common/premium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/common/premium.py -------------------------------------------------------------------------------- /src/common/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/common/regex.py -------------------------------------------------------------------------------- /src/common/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/common/weather.py -------------------------------------------------------------------------------- /src/listeners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/listeners/__init__.py -------------------------------------------------------------------------------- /src/listeners/errorhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/listeners/errorhandler.py -------------------------------------------------------------------------------- /src/listeners/osulisteners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/listeners/osulisteners.py -------------------------------------------------------------------------------- /src/listeners/voicelistener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/listeners/voicelistener.py -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/models/__init__.py -------------------------------------------------------------------------------- /src/models/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/models/config.py -------------------------------------------------------------------------------- /src/models/deprecated/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/models/deprecated/__init__.py -------------------------------------------------------------------------------- /src/models/deprecated/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/models/deprecated/server.py -------------------------------------------------------------------------------- /src/models/enums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/models/enums/__init__.py -------------------------------------------------------------------------------- /src/models/enums/animals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/models/enums/animals.py -------------------------------------------------------------------------------- /src/models/guild_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/models/guild_settings.py -------------------------------------------------------------------------------- /src/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/models/user.py -------------------------------------------------------------------------------- /src/models/user_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/models/user_preferences.py -------------------------------------------------------------------------------- /src/models/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/models/weather.py -------------------------------------------------------------------------------- /src/repository/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/repository/__init__.py -------------------------------------------------------------------------------- /src/repository/beatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/repository/beatmap.py -------------------------------------------------------------------------------- /src/repository/beatmapset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/repository/beatmapset.py -------------------------------------------------------------------------------- /src/repository/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/repository/graph.py -------------------------------------------------------------------------------- /src/repository/guild_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/repository/guild_settings.py -------------------------------------------------------------------------------- /src/repository/osu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/repository/osu.py -------------------------------------------------------------------------------- /src/repository/recording_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/repository/recording_preferences.py -------------------------------------------------------------------------------- /src/repository/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/repository/stats.py -------------------------------------------------------------------------------- /src/repository/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/repository/user.py -------------------------------------------------------------------------------- /src/repository/user_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/repository/user_preferences.py -------------------------------------------------------------------------------- /src/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/run.py -------------------------------------------------------------------------------- /src/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/service/__init__.py -------------------------------------------------------------------------------- /src/service/beatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/service/beatmap.py -------------------------------------------------------------------------------- /src/service/beatmapset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/service/beatmapset.py -------------------------------------------------------------------------------- /src/service/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/service/graph.py -------------------------------------------------------------------------------- /src/service/guild_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/service/guild_settings.py -------------------------------------------------------------------------------- /src/service/recording_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/service/recording_preferences.py -------------------------------------------------------------------------------- /src/service/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/service/stats.py -------------------------------------------------------------------------------- /src/service/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/service/user.py -------------------------------------------------------------------------------- /src/service/user_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/service/user_preferences.py -------------------------------------------------------------------------------- /src/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/tasks/__init__.py -------------------------------------------------------------------------------- /src/tasks/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/tasks/cron.py -------------------------------------------------------------------------------- /src/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/__init__.py -------------------------------------------------------------------------------- /src/ui/embeds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/__init__.py -------------------------------------------------------------------------------- /src/ui/embeds/fun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/fun/__init__.py -------------------------------------------------------------------------------- /src/ui/embeds/fun/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/fun/poll.py -------------------------------------------------------------------------------- /src/ui/embeds/generic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/generic/__init__.py -------------------------------------------------------------------------------- /src/ui/embeds/generic/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/generic/context.py -------------------------------------------------------------------------------- /src/ui/embeds/generic/interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/generic/interaction.py -------------------------------------------------------------------------------- /src/ui/embeds/information/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/information/__init__.py -------------------------------------------------------------------------------- /src/ui/embeds/information/botinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/information/botinfo.py -------------------------------------------------------------------------------- /src/ui/embeds/information/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/information/help.py -------------------------------------------------------------------------------- /src/ui/embeds/information/premium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/information/premium.py -------------------------------------------------------------------------------- /src/ui/embeds/information/severinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/information/severinfo.py -------------------------------------------------------------------------------- /src/ui/embeds/music/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/music/__init__.py -------------------------------------------------------------------------------- /src/ui/embeds/music/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/music/track.py -------------------------------------------------------------------------------- /src/ui/embeds/osu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/osu/__init__.py -------------------------------------------------------------------------------- /src/ui/embeds/osu/beatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/osu/beatmap.py -------------------------------------------------------------------------------- /src/ui/embeds/osu/difficulty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/osu/difficulty.py -------------------------------------------------------------------------------- /src/ui/embeds/osu/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/osu/link.py -------------------------------------------------------------------------------- /src/ui/embeds/osu/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/osu/profile.py -------------------------------------------------------------------------------- /src/ui/embeds/osu/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/osu/render.py -------------------------------------------------------------------------------- /src/ui/embeds/osu/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/osu/score.py -------------------------------------------------------------------------------- /src/ui/embeds/osu/skin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/osu/skin.py -------------------------------------------------------------------------------- /src/ui/embeds/weather/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/weather/__init__.py -------------------------------------------------------------------------------- /src/ui/embeds/weather/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/embeds/weather/info.py -------------------------------------------------------------------------------- /src/ui/icons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/icons/__init__.py -------------------------------------------------------------------------------- /src/ui/icons/beatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/icons/beatmap.py -------------------------------------------------------------------------------- /src/ui/icons/gamemode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/icons/gamemode.py -------------------------------------------------------------------------------- /src/ui/icons/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/icons/score.py -------------------------------------------------------------------------------- /src/ui/menus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/menus/__init__.py -------------------------------------------------------------------------------- /src/ui/menus/generic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/menus/generic/__init__.py -------------------------------------------------------------------------------- /src/ui/menus/generic/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/menus/generic/view.py -------------------------------------------------------------------------------- /src/ui/menus/music/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/menus/music/__init__.py -------------------------------------------------------------------------------- /src/ui/menus/music/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/menus/music/queue.py -------------------------------------------------------------------------------- /src/ui/menus/osu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/menus/osu/__init__.py -------------------------------------------------------------------------------- /src/ui/menus/osu/osubeatmapview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/menus/osu/osubeatmapview.py -------------------------------------------------------------------------------- /src/ui/menus/osu/osudleview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/menus/osu/osudleview.py -------------------------------------------------------------------------------- /src/ui/menus/osu/osuscoresview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/menus/osu/osuscoresview.py -------------------------------------------------------------------------------- /src/ui/menus/osu/osuskinsview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyCord/bot/HEAD/src/ui/menus/osu/osuskinsview.py --------------------------------------------------------------------------------