1
0
mirror of synced 2024-11-15 02:17:36 +01:00
bemaniutils/bemani/backend/iidx/bistrover.py

18 lines
502 B
Python

# vim: set fileencoding=utf-8
from typing import Optional
from bemani.backend.iidx.base import IIDXBase
from bemani.backend.iidx.heroicverse import IIDXHeroicVerse
from bemani.common import VersionConstants
class IIDXBistrover(IIDXBase):
name: str = 'Beatmania IIDX BISTROVER'
version: int = VersionConstants.IIDX_BISTROVER
requires_extended_regions: bool = True
def previous_version(self) -> Optional[IIDXBase]:
return IIDXHeroicVerse(self.data, self.config, self.model)