Add missing

This commit is contained in:
duckietm 2023-03-24 15:53:07 +01:00
parent 264179556a
commit 047287ee91
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import { IMessageDataWrapper, IMessageParser } from '../../../../../api';
export class RestoreClientMessageParser implements IMessageParser
{
public flush(): boolean
{
return true;
}
public parse(wrapper: IMessageDataWrapper): boolean
{
return true;
}
}

View File

@ -12,6 +12,7 @@ export * from './MOTDNotificationParser';
export * from './NotificationDialogMessageParser';
export * from './OfferRewardDeliveredMessageParser';
export * from './PetLevelNotificationParser';
export * from './RestoreClientMessageParser';
export * from './PetPlacingErrorEventParser';
export * from './SimpleAlertMessageParser';
export * from './UnseenItemsParser';