option to hide all UI

This commit is contained in:
yugecin
2016-09-30 12:06:36 +02:00
parent 6965e33856
commit 3a1f510e31
4 changed files with 80 additions and 62 deletions

View File

@@ -698,6 +698,20 @@ public class Options {
// TODO
},
DANCE_HIDE_UI ("Hide all UI", "HideUI", ".", true) {
@Override
public void click(GameContainer container) {
bool = !bool;
Dancer.hideui = bool;
}
@Override
public void read(String s) {
super.read(s);
Dancer.hideui = bool;
}
},
PIPPI_ENABLE ("Pippi", "Pippi", "Move in circles like dancing pippi (osu! april fools joke 2016)", false) {
// TODO
},