mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-23 08:00:51 +01:00
Merge branch 'pet-goto-breeding-nestfailure' of https://github.com/oobjectt/nitro-renderer into oobjectt-pet-goto-breeding-nestfailure
This commit is contained in:
commit
ce1f6d5db1
File diff suppressed because one or more lines are too long
@ -126,6 +126,7 @@ export class IncomingHeader
|
|||||||
public static PET_OPEN_PACKAGE_RESULT = 546;
|
public static PET_OPEN_PACKAGE_RESULT = 546;
|
||||||
public static PET_BREEDING = 1746;
|
public static PET_BREEDING = 1746;
|
||||||
public static PET_CONFIRM_BREEDING_RESULT = 1625;
|
public static PET_CONFIRM_BREEDING_RESULT = 1625;
|
||||||
|
public static PET_GO_TO_BREEDING_NEST_FAILURE = 2621;
|
||||||
public static RECYCLER_PRIZES = 3164;
|
public static RECYCLER_PRIZES = 3164;
|
||||||
public static ROOM_BAN_LIST = 1869;
|
public static ROOM_BAN_LIST = 1869;
|
||||||
public static ROOM_BAN_REMOVE = 3429;
|
public static ROOM_BAN_REMOVE = 3429;
|
||||||
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,5 @@
|
|||||||
export * from './ConfirmBreedingResultEvent';
|
export * from './ConfirmBreedingResultEvent';
|
||||||
|
export * from './GoToBreedingNestFailureEvent';
|
||||||
export * from './PetAddedToInventoryEvent';
|
export * from './PetAddedToInventoryEvent';
|
||||||
export * from './PetInventoryEvent';
|
export * from './PetInventoryEvent';
|
||||||
export * from './PetReceivedMessageEvent';
|
export * from './PetReceivedMessageEvent';
|
||||||
|
Loading…
Reference in New Issue
Block a user