mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
13 lines
263 B
Python
13 lines
263 B
Python
class Song():
|
|
"""Deal with information of a song"""
|
|
|
|
def __init__(self, source) -> None:
|
|
self.__source = source
|
|
self.__get_info()
|
|
|
|
def __get_info(self):
|
|
pass
|
|
|
|
def info():
|
|
"""Return the compiled info of this song"""
|