mystery feature #50

This commit is contained in:
Anthony Samms
2025-11-10 11:31:37 -05:00
parent 244b66c0f3
commit 66b88ba480
7 changed files with 62 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
from libs.bg_objects.bg_normal import BGNormalBase
from libs.texture import TextureWrapper
from libs.bg_objects.don_bg import DonBG1
class Background:
def __init__(self, tex: TextureWrapper, player_num: int, bpm: float, path: str, max_dancers: int):
self.tex_wrapper = tex
self.max_dancers = max_dancers
self.don_bg = DonBG1(self.tex_wrapper, 0, 1, path)
self.bg_normal = BGNormalBase(self.tex_wrapper, 0, path)
self.bg_fever = None
self.footer = None
self.fever = None
self.dancer = None
self.renda = None
self.chibi = None