mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-16 06:12:19 -08:00
Added Unlocks menu button to Escape menu on desktop (#324)
This commit is contained in:
parent
ece3f96867
commit
c9777af91c
2 changed files with 4 additions and 1 deletions
|
|
@ -155,6 +155,7 @@ public class UI extends SceneModule{
|
|||
load = new LoadDialog();
|
||||
levels = new CustomGameDialog();
|
||||
language = new LanguageDialog();
|
||||
unlocks = new UnlocksDialog();
|
||||
settings = new SettingsMenuDialog();
|
||||
host = new HostDialog();
|
||||
paused = new PausedDialog();
|
||||
|
|
@ -165,7 +166,6 @@ public class UI extends SceneModule{
|
|||
traces = new TraceDialog();
|
||||
maps = new MapsDialog();
|
||||
localplayers = new LocalPlayerDialog();
|
||||
unlocks = new UnlocksDialog();
|
||||
content = new ContentInfoDialog();
|
||||
sectors = new SectorsDialog();
|
||||
missions = new MissionDialog();
|
||||
|
|
|
|||
|
|
@ -57,6 +57,9 @@ public class PausedDialog extends FloatingDialog{
|
|||
hide();
|
||||
});
|
||||
|
||||
content().row();
|
||||
content().addButton("$text.unlocks", ui.unlocks::show);
|
||||
|
||||
content().row();
|
||||
content().addButton("$text.settings", ui.settings::show);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue