Add: page_rogue

This commit is contained in:
LmeSzinc 2023-09-29 18:28:23 +08:00
parent 8648644c2f
commit 826d92e40e
3 changed files with 14 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@ -352,6 +352,16 @@ MISSION_CHECK = ButtonWrapper(
button=(44, 33, 70, 55),
),
)
ROGUE_CHECK = ButtonWrapper(
name='ROGUE_CHECK',
share=Button(
file='./assets/share/base/page/ROGUE_CHECK.png',
area=(40, 19, 73, 49),
search=(20, 0, 93, 69),
color=(104, 96, 90),
button=(40, 19, 73, 49),
),
)
SYNTHESIZE_CHECK = ButtonWrapper(
name='SYNTHESIZE_CHECK',
share=Button(

View File

@ -154,3 +154,7 @@ page_menu.link(MENU_GOTO_ASSIGNMENT, destination=page_assignment)
# Forgotten Hall
page_forgotten_hall = Page(FORGOTTEN_HALL_CHECK)
page_forgotten_hall.link(CLOSE, destination=page_main)
# Rogue, Simulated Universe
page_rogue = Page(ROGUE_CHECK)
page_rogue.link(CLOSE, destination=page_main)