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
20 lines
365 B
TypeScript
20 lines
365 B
TypeScript
import { NitroEvent } from '@nitrots/events';
|
|
|
|
export class SoundManagerEvent extends NitroEvent
|
|
{
|
|
public static TRAX_SONG_COMPLETE: string = 'SME_TRAX_SONG_COMPLETE';
|
|
|
|
private _id: number;
|
|
|
|
constructor(type: string, id: number)
|
|
{
|
|
super(type);
|
|
this._id = id;
|
|
}
|
|
|
|
public get id(): number
|
|
{
|
|
return this._id;
|
|
}
|
|
}
|