1
0
mirror of synced 2024-12-13 06:51:08 +01:00
bemaniutils/bemani/backend/popn/peace.py

14 lines
418 B
Python

# vim: set fileencoding=utf-8
from bemani.backend.popn.base import PopnMusicBase
from bemani.backend.popn.usaneko import PopnMusicUsaNeko
from bemani.common import VersionConstants
class PopnMusicPeace(PopnMusicBase):
name = "Pop'n Music peace"
version = VersionConstants.POPN_MUSIC_PEACE
def previous_version(self) -> PopnMusicBase:
return PopnMusicUsaNeko(self.data, self.config, self.model)