You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 07:26:18 +00:00
17 lines
486 B
TypeScript
17 lines
486 B
TypeScript
import { IMessageEvent } from '@nitrots/api';
|
|
import { MessageEvent } from '@nitrots/events';
|
|
import { NoOwnedRoomsAlertMessageParser } from '../../parser';
|
|
|
|
export class NoOwnedRoomsAlertMessageEvent extends MessageEvent implements IMessageEvent
|
|
{
|
|
constructor(callBack: Function)
|
|
{
|
|
super(callBack, NoOwnedRoomsAlertMessageParser);
|
|
}
|
|
|
|
public getParser(): NoOwnedRoomsAlertMessageParser
|
|
{
|
|
return this.parser as NoOwnedRoomsAlertMessageParser;
|
|
}
|
|
}
|