Merge branch 'oobjectt-composer-pet-selected'

This commit is contained in:
dank074 2022-12-27 01:10:45 -06:00
commit b87b89374f
5 changed files with 26 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -137,6 +137,7 @@ export class OutgoingHeader
public static PET_RIDE = 1036;
public static PET_MOVE = 3449;
public static PET_OPEN_PACKAGE = 3698;
public static PET_SELECTED = 549;
public static GET_PET_TRAINING_PANEL = 2161;
public static RECYCLER_PRIZES = 398;
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/youtube';
export * from './room/layout';
export * from './room/pets';
export * from './room/session';
export * from './room/unit';
export * from './room/unit/chat';

View File

@ -0,0 +1,21 @@
import { IMessageComposer } from '../../../../../../api';
export class PetSelectedMessageComposer implements IMessageComposer<ConstructorParameters<typeof PetSelectedMessageComposer>>
{
private _data: ConstructorParameters<typeof PetSelectedMessageComposer>;
constructor(petId: number)
{
this._data = [petId];
}
public getMessageArray()
{
return this._data;
}
public dispose(): void
{
return;
}
}

View File

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