v0.2.3e: removed resume button from toolbar, added icon for resume button

This commit is contained in:
Evan Debenham
2015-01-21 22:57:47 -05:00
parent 34a7b82f94
commit e7e289e666
2 changed files with 12 additions and 4 deletions
@@ -50,7 +50,8 @@ public enum Icons {
UNCHECKED,
EXIT,
CHALLENGE_OFF,
CHALLENGE_ON;
CHALLENGE_ON,
RESUME;
public Image get() {
return get( this );
@@ -143,6 +144,9 @@ public enum Icons {
case CHALLENGE_ON:
icon.frame( icon.texture.uvRect( 102, 16, 126, 40 ) );
break;
case RESUME:
icon.frame( icon.texture.uvRect( 13, 53, 24, 64 ) );
break;
}
return icon;
}