add animal kaiser collab

This commit is contained in:
Anthony Samms
2025-09-13 01:28:21 -04:00
parent 6b21206063
commit 513d6ffa39
7 changed files with 63 additions and 10 deletions

View File

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