2023-02-17 07:02:21 +01:00
|
|
|
from typing import Any, List, Dict
|
2023-03-15 21:03:22 +01:00
|
|
|
from random import randint
|
2023-02-17 07:02:21 +01:00
|
|
|
from datetime import datetime, timedelta
|
|
|
|
|
|
|
|
from core.config import CoreConfig
|
2023-07-15 22:51:54 +02:00
|
|
|
from titles.mai2.splashplus import Mai2SplashPlus
|
2023-02-17 07:02:21 +01:00
|
|
|
from titles.mai2.const import Mai2Constants
|
|
|
|
from titles.mai2.config import Mai2Config
|
|
|
|
|
2023-03-09 17:38:58 +01:00
|
|
|
|
2023-07-15 22:51:54 +02:00
|
|
|
class Mai2Universe(Mai2SplashPlus):
|
2023-02-17 07:02:21 +01:00
|
|
|
def __init__(self, cfg: CoreConfig, game_cfg: Mai2Config) -> None:
|
|
|
|
super().__init__(cfg, game_cfg)
|
2023-03-09 17:38:58 +01:00
|
|
|
self.version = Mai2Constants.VER_MAIMAI_DX_UNIVERSE
|