draw the logo in the bottom right corner of the songmenu

This commit is contained in:
yugecin
2016-12-10 20:36:34 +01:00
parent 22d3ee1b32
commit 8c172dc15f
3 changed files with 26 additions and 4 deletions

View File

@@ -45,7 +45,9 @@ public class Colors {
BLUE_SCOREBOARD = new Color(133, 208, 212),
BLACK_BG_NORMAL = new Color(0, 0, 0, 0.25f),
BLACK_BG_HOVER = new Color(0, 0, 0, 0.5f),
BLACK_BG_FOCUS = new Color(0, 0, 0, 0.75f);
BLACK_BG_FOCUS = new Color(0, 0, 0, 0.75f),
GHOST_LOGO = new Color(1.0f, 1.0f, 1.0f, 0.15f);
// This class should not be instantiated.
private Colors() {}