api: Add unlocked music tracks to VarPlayer

This commit is contained in:
Shaun Dreclin
2019-02-25 21:20:41 -05:00
committed by Adam
parent 923c3bcd26
commit cc210a3035

View File

@@ -134,7 +134,30 @@ public enum VarPlayer
* Slayer unlock bitfields
*/
SLAYER_UNLOCK_1(1076),
SLAYER_UNLOCK_2(1344);
SLAYER_UNLOCK_2(1344),
/**
* Music track unlock bitfields
*/
MUSIC_TRACKS_UNLOCKED_1(20),
MUSIC_TRACKS_UNLOCKED_2(21),
MUSIC_TRACKS_UNLOCKED_3(22),
MUSIC_TRACKS_UNLOCKED_4(23),
MUSIC_TRACKS_UNLOCKED_5(24),
MUSIC_TRACKS_UNLOCKED_6(25),
MUSIC_TRACKS_UNLOCKED_7(298),
MUSIC_TRACKS_UNLOCKED_8(311),
MUSIC_TRACKS_UNLOCKED_9(346),
MUSIC_TRACKS_UNLOCKED_10(414),
MUSIC_TRACKS_UNLOCKED_11(464),
MUSIC_TRACKS_UNLOCKED_12(598),
MUSIC_TRACKS_UNLOCKED_13(662),
MUSIC_TRACKS_UNLOCKED_14(721),
MUSIC_TRACKS_UNLOCKED_15(906),
MUSIC_TRACKS_UNLOCKED_16(1009),
MUSIC_TRACKS_UNLOCKED_17(1338),
MUSIC_TRACKS_UNLOCKED_18(1681),
MUSIC_TRACKS_UNLOCKED_19(2065);
private final int id;
}