Files
Nitro_Render_V3/packages/sound/src/music/MusicPriorities.ts
T
2024-04-03 09:27:56 +02:00

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;
}