1
0
mirror of synced 2024-11-24 14:30:11 +01:00
bemaniutils/bemani/backend/jubeat/festo.py

17 lines
436 B
Python
Raw Normal View History

# vim: set fileencoding=utf-8
from typing import Optional
from bemani.backend.jubeat.base import JubeatBase
from bemani.backend.jubeat.clan import JubeatClan
from bemani.common import VersionConstants
class JubeatFesto(JubeatBase):
name: str = 'Jubeat Festo'
version: int = VersionConstants.JUBEAT_FESTO
def previous_version(self) -> Optional[JubeatBase]:
return JubeatClan(self.data, self.config, self.model)