1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 07:28:21 +08:00

Add: Receive META rewards (#863)

This commit is contained in:
LmeSzinc
2022-02-12 22:48:42 +08:00
parent 4bcd207877
commit 9266f3b3fc
25 changed files with 246 additions and 4 deletions

View File

@@ -136,10 +136,15 @@ page_research.link(button=GOTO_MAIN, destination=page_main)
page_shipyard = Page(SHIPYARD_CHECK)
page_shipyard.link(button=GOTO_MAIN, destination=page_main)
# Meta
page_meta = Page(META_CHECK)
page_meta.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=RESHMENU_GOTO_SHIPYARD, destination=page_shipyard)
page_reshmenu.link(button=RESHMENU_GOTO_META, destination=page_meta)
page_reshmenu.link(button=GOTO_MAIN, destination=page_main)
page_main.link(button=MAIN_GOTO_RESHMENU, destination=page_reshmenu)