24 lines
615 B
Python
24 lines
615 B
Python
|
# -------------------------------
|
||
|
# Difficult Rocket
|
||
|
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
|
||
|
# All rights reserved
|
||
|
# -------------------------------
|
||
|
|
||
|
from Difficult_Rocket.client import ClientWindow
|
||
|
from Difficult_Rocket.api.screen import BaseScreen
|
||
|
|
||
|
# from . import DR_mod_runtime
|
||
|
|
||
|
|
||
|
class Menu(BaseScreen):
|
||
|
"""
|
||
|
DR game 的 菜单
|
||
|
"""
|
||
|
name = 'DR_game_menu'
|
||
|
|
||
|
def __init__(self,
|
||
|
main_window: ClientWindow):
|
||
|
super().__init__(main_window)
|
||
|
# 占位, 高二看看能不能咕出来点啥 (20230911)
|
||
|
# 欸呀, 正好是 911 纪念日哦
|