Merge branch 'pet-goto-breeding-nestfailure' of https://github.com/oobjectt/nitro-renderer into oobjectt-pet-goto-breeding-nestfailure

This commit is contained in:
dank074 2022-12-23 19:48:41 -06:00
commit ce1f6d5db1
4 changed files with 20 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -126,6 +126,7 @@ export class IncomingHeader
public static PET_OPEN_PACKAGE_RESULT = 546;
public static PET_BREEDING = 1746;
public static PET_CONFIRM_BREEDING_RESULT = 1625;
public static PET_GO_TO_BREEDING_NEST_FAILURE = 2621;
public static RECYCLER_PRIZES = 3164;
public static ROOM_BAN_LIST = 1869;
public static ROOM_BAN_REMOVE = 3429;

View File

@ -0,0 +1,16 @@
import { IMessageEvent } from '../../../../../../api';
import { MessageEvent } from '../../../../../../events';
import { GoToBreedingNestFailureParser } from '../../../parser';
export class GoToBreedingNestFailureEvent extends MessageEvent implements IMessageEvent
{
constructor(callBack: Function)
{
super(callBack, GoToBreedingNestFailureParser);
}
public getParser(): GoToBreedingNestFailureParser
{
return this.parser as GoToBreedingNestFailureParser;
}
}

View File

@ -1,4 +1,5 @@
export * from './ConfirmBreedingResultEvent';
export * from './GoToBreedingNestFailureEvent';
export * from './PetAddedToInventoryEvent';
export * from './PetInventoryEvent';
export * from './PetReceivedMessageEvent';