mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
10 lines
194 B
Python
10 lines
194 B
Python
class Playlist():
|
|
"""Class to manage and control the musics to play"""
|
|
|
|
def __init__(self) -> None:
|
|
self.queue = []
|
|
self.history = []
|
|
|
|
def next_music():
|
|
pass
|