2023-08-27 01:52:45 +08:00
|
|
|
# -------------------------------
|
|
|
|
# Difficult Rocket
|
|
|
|
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
|
|
|
|
# All rights reserved
|
|
|
|
# -------------------------------
|
|
|
|
|
|
|
|
from pyglet.graphics import Batch, Group
|
|
|
|
|
|
|
|
from Difficult_Rocket.client import ClientWindow
|
|
|
|
from Difficult_Rocket.api.screen import BaseScreen
|
|
|
|
|
|
|
|
# from . import DR_mod_runtime
|
|
|
|
|
|
|
|
|
|
|
|
class Menu(BaseScreen):
|
|
|
|
"""
|
|
|
|
DR game 的 菜单
|
|
|
|
"""
|
|
|
|
|
2023-12-03 16:54:07 +08:00
|
|
|
name = "DR_game_menu"
|
|
|
|
|
|
|
|
def __init__(self, main_window: ClientWindow):
|
2023-08-27 01:52:45 +08:00
|
|
|
super().__init__(main_window)
|
|
|
|
self.main_batch = Batch()
|
|
|
|
self.main_group = Group(parent=main_window.main_group, order=1)
|
|
|
|
|
|
|
|
# 占位, 高二看看能不能咕出来点啥 (20230911)
|
|
|
|
# 欸呀, 正好是 911 纪念日哦
|