mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2025-01-19 06:46:28 +01:00
Merge branch 'composer-cancel-pet-breeding' of https://github.com/oobjectt/nitro-renderer into oobjectt-composer-cancel-pet-breeding
This commit is contained in:
commit
badb6d1e41
File diff suppressed because one or more lines are too long
@ -139,6 +139,7 @@ export class OutgoingHeader
|
|||||||
public static PET_OPEN_PACKAGE = 3698;
|
public static PET_OPEN_PACKAGE = 3698;
|
||||||
public static PET_SELECTED = 549;
|
public static PET_SELECTED = 549;
|
||||||
public static PETS_BREED = 1638;
|
public static PETS_BREED = 1638;
|
||||||
|
public static PET_CANCEL_BREEDING = 2713;
|
||||||
public static GET_PET_TRAINING_PANEL = 2161;
|
public static GET_PET_TRAINING_PANEL = 2161;
|
||||||
public static RECYCLER_PRIZES = 398;
|
public static RECYCLER_PRIZES = 398;
|
||||||
public static RELEASE_VERSION = 4000;
|
public static RELEASE_VERSION = 4000;
|
||||||
|
@ -0,0 +1,21 @@
|
|||||||
|
import { IMessageComposer } from '../../../../../../api';
|
||||||
|
|
||||||
|
export class CancelPetBreedingComposer implements IMessageComposer<ConstructorParameters<typeof CancelPetBreedingComposer>>
|
||||||
|
{
|
||||||
|
private _data: ConstructorParameters<typeof CancelPetBreedingComposer>;
|
||||||
|
|
||||||
|
constructor(itemId: number)
|
||||||
|
{
|
||||||
|
this._data = [itemId];
|
||||||
|
}
|
||||||
|
|
||||||
|
public getMessageArray()
|
||||||
|
{
|
||||||
|
return this._data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public dispose(): void
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
@ -1 +1,2 @@
|
|||||||
|
export * from './CancelPetBreedingComposer';
|
||||||
export * from './RequestPetsComposer';
|
export * from './RequestPetsComposer';
|
||||||
|
Loading…
Reference in New Issue
Block a user