mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
12 lines
170 B
Python
12 lines
170 B
Python
from enum import Enum
|
|
|
|
|
|
class MessagesCategory(Enum):
|
|
QUEUE = 1
|
|
HISTORY = 2
|
|
LOOP = 3
|
|
NOW_PLAYING = 4
|
|
PLAYER = 5
|
|
MANAGING_QUEUE = 6
|
|
OTHERS = 7
|