#29 - CancelPetBreedingComposer added

This commit is contained in:
oobjectt 2022-12-26 17:52:12 +01:00
parent e70d9cc804
commit 190685994b
4 changed files with 25 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -136,6 +136,7 @@ export class OutgoingHeader
public static PET_RESPECT = 3202;
public static PET_RIDE = 1036;
public static PET_MOVE = 3449;
public static PET_CANCEL_BREEDING = 2713;
public static GET_PET_TRAINING_PANEL = 2161;
public static RECYCLER_PRIZES = 398;
public static RELEASE_VERSION = 4000;

View File

@ -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;
}
}

View File

@ -1 +1,2 @@
export * from './CancelPetBreedingComposer';
export * from './RequestPetsComposer';