mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
21 lines
598 B
Python
21 lines
598 B
Python
from Config.Singleton import Singleton
|
|
|
|
|
|
class VEmojis(Singleton):
|
|
def __init__(self) -> None:
|
|
if not super().created:
|
|
self.SKIP = "⏩"
|
|
self.BACK = "⏪"
|
|
self.PAUSE = "⏸️"
|
|
self.PLAY = "▶️"
|
|
self.STOP = "⏹️"
|
|
self.LOOP_ONE = "🔂"
|
|
self.LOOP_OFF = "➡️"
|
|
self.LOOP_ALL = "🔁"
|
|
self.SHUFFLE = "🔀"
|
|
self.QUEUE = "📜"
|
|
self.MUSIC = "🎧"
|
|
self.ERROR = "❌"
|
|
self.DOWNLOADING = "📥"
|
|
self.SUCCESS = "✅"
|