You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 15:36:18 +00:00
9 lines
339 B
TypeScript
9 lines
339 B
TypeScript
export class MusicPriorities
|
|
{
|
|
public static readonly PRIORITY_ROOM_PLAYLIST: number = 0;
|
|
public static readonly PRIORITY_USER_PLAYLIST: number = 1;
|
|
public static readonly PRIORITY_SONG_PLAY: number = 2;
|
|
public static readonly PRIORITY_PURCHASE_PREVIEW: number = 3;
|
|
public static readonly PRIORITY_COUNT: number = 4;
|
|
}
|