mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-22 23:50:52 +01:00
#9 - GoToBreedingNestFailureEvent added
This commit is contained in:
parent
473f3ab12c
commit
c236735947
File diff suppressed because one or more lines are too long
@ -124,6 +124,7 @@ export class IncomingHeader
|
||||
public static PET_SCRATCH_FAILED = 1130;
|
||||
public static PET_OPEN_PACKAGE_REQUESTED = 2380;
|
||||
public static PET_OPEN_PACKAGE_RESULT = 546;
|
||||
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;
|
||||
|
@ -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,3 +1,4 @@
|
||||
export * from './GoToBreedingNestFailureEvent';
|
||||
export * from './PetAddedToInventoryEvent';
|
||||
export * from './PetInventoryEvent';
|
||||
export * from './PetReceivedMessageEvent';
|
||||
|
Loading…
Reference in New Issue
Block a user