29 lines
764 B
Python
29 lines
764 B
Python
|
# -------------------------------
|
||
|
# 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 的 菜单
|
||
|
"""
|
||
|
name = 'DR_game_menu'
|
||
|
|
||
|
def __init__(self,
|
||
|
main_window: ClientWindow):
|
||
|
super().__init__(main_window)
|
||
|
self.main_batch = Batch()
|
||
|
self.main_group = Group(parent=main_window.main_group, order=1)
|
||
|
|
||
|
# 占位, 高二看看能不能咕出来点啥 (20230911)
|
||
|
# 欸呀, 正好是 911 纪念日哦
|