You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 23:16:20 +00:00
13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
import { NitroEvent } from '@nitrots/events';
|
|
|
|
export class PlayListStatusEvent extends NitroEvent
|
|
{
|
|
public static readonly PLUE_PLAY_LIST_UPDATED = 'PLUE_PLAY_LIST_UPDATED';
|
|
public static readonly PLUE_PLAY_LIST_FULL = 'PLUE_PLAY_LIST_FULL';
|
|
|
|
constructor(k:string)
|
|
{
|
|
super(k);
|
|
}
|
|
}
|