2023-02-17 06:02:21 +00:00
|
|
|
from titles.mai2.index import Mai2Servlet
|
|
|
|
from titles.mai2.const import Mai2Constants
|
|
|
|
from titles.mai2.database import Mai2Data
|
|
|
|
from titles.mai2.read import Mai2Reader
|
|
|
|
|
|
|
|
index = Mai2Servlet
|
|
|
|
database = Mai2Data
|
|
|
|
reader = Mai2Reader
|
2023-05-01 02:19:31 +00:00
|
|
|
game_codes = [
|
|
|
|
Mai2Constants.GAME_CODE_DX,
|
|
|
|
Mai2Constants.GAME_CODE_FINALE,
|
|
|
|
Mai2Constants.GAME_CODE_MILK,
|
|
|
|
Mai2Constants.GAME_CODE_MURASAKI,
|
|
|
|
Mai2Constants.GAME_CODE_PINK,
|
|
|
|
Mai2Constants.GAME_CODE_ORANGE,
|
|
|
|
Mai2Constants.GAME_CODE_GREEN,
|
|
|
|
Mai2Constants.GAME_CODE,
|
2024-04-07 19:12:12 +00:00
|
|
|
Mai2Constants.GAME_CODE_DX_INT,
|
2023-05-01 02:19:31 +00:00
|
|
|
]
|