1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-18 05:41:29 +08:00

Add: page_research and page_reshmenu

This commit is contained in:
LmeSzinc
2020-07-17 05:25:27 +08:00
parent 2424a5605e
commit 92c9090ec8
8 changed files with 18 additions and 2 deletions

View File

@@ -97,3 +97,14 @@ page_main.link(button=MAIN_GOTO_EVENT_LIST, destination=page_event_list)
page_raid = Page(RAID_CHECK)
page_raid.link(button=GOTO_MAIN, destination=page_main)
page_main.link(button=MAIN_GOTO_RAID, destination=page_raid)
# Research
# Please don't goto page_research from page_reward.
page_research = Page(RESEARCH_CHECK)
page_research.link(button=GOTO_MAIN, destination=page_main)
# Research menu
page_reshmenu = Page(RESHMENU_CHECK)
page_reshmenu.link(button=RESHMENU_GOTO_RESEARCH, destination=page_research)
page_reshmenu.link(button=GOTO_MAIN, destination=page_main)
page_main.link(button=MAIN_GOTO_RESHMENU, destination=page_reshmenu)