#29 - BreedPetsMessageComposer added

This commit is contained in:
oobjectt 2022-12-26 17:43:09 +01:00
parent e70d9cc804
commit 77c09767f6
5 changed files with 30 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_RESPECT = 3202;
public static PET_RIDE = 1036; public static PET_RIDE = 1036;
public static PET_MOVE = 3449; public static PET_MOVE = 3449;
public static PETS_BREED = 1638;
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;

View File

@ -53,6 +53,7 @@ export * from './room/furniture/toner';
export * from './room/furniture/wall'; export * from './room/furniture/wall';
export * from './room/furniture/youtube'; export * from './room/furniture/youtube';
export * from './room/layout'; export * from './room/layout';
export * from './room/pets';
export * from './room/session'; export * from './room/session';
export * from './room/unit'; export * from './room/unit';
export * from './room/unit/chat'; export * from './room/unit/chat';

View File

@ -0,0 +1,25 @@
import { IMessageComposer } from '../../../../../../api';
export class BreedPetsMessageComposer implements IMessageComposer<ConstructorParameters<typeof BreedPetsMessageComposer>>
{
public static readonly STATE_START: number = 0;
public static readonly STATE_CANCEL: number = 1;
public static readonly STATE_ACCEPT: number = 2;
private _data: ConstructorParameters<typeof BreedPetsMessageComposer>;
constructor(state: number, petOneId: number, petTwoId: number)
{
this._data = [state, petOneId, petTwoId];
}
public getMessageArray()
{
return this._data;
}
public dispose(): void
{
return;
}
}

View File

@ -0,0 +1 @@
export * from './BreedPetsMessageComposer';