Files
PyTaiko/libs/bg_objects/footer.py
2025-12-27 13:26:24 -05:00

14 lines
392 B
Python

from libs.texture import TextureWrapper
class Footer:
def __init__(self, tex: TextureWrapper, index: int, path: str = 'background'):
self.index = index
if self.index == -1:
return
tex.load_zip(path, 'footer')
def draw(self, tex: TextureWrapper):
if self.index == -1:
return
tex.draw_texture('footer', str(self.index))