mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-22 23:50:52 +01:00
Merge branch 'composer-mysterybox-trophy' of https://github.com/oobjectt/nitro-renderer into oobjectt-composer-mysterybox-trophy
This commit is contained in:
commit
4393b61ad9
File diff suppressed because one or more lines are too long
@ -197,6 +197,7 @@ export class OutgoingHeader
|
||||
public static ROOM_FILTER_WORDS = 1911;
|
||||
public static ROOM_FILTER_WORDS_MODIFY = 3001;
|
||||
public static MYSTERYBOXWAITINGCANCELEDMESSAGE = 2012;
|
||||
public static MYSTERYBOX_OPEN_TROPHY = 3074;
|
||||
public static SECURITY_MACHINE = 2490;
|
||||
public static SECURITY_TICKET = 2419;
|
||||
public static TRADE = 1481;
|
||||
|
@ -0,0 +1,21 @@
|
||||
import { IMessageComposer } from '../../../../../../api';
|
||||
|
||||
export class OpenMysteryTrophyMessageComposer implements IMessageComposer<ConstructorParameters<typeof OpenMysteryTrophyMessageComposer>>
|
||||
{
|
||||
private _data: ConstructorParameters<typeof OpenMysteryTrophyMessageComposer>;
|
||||
|
||||
constructor(objectId: number, text: string)
|
||||
{
|
||||
this._data = [objectId, text];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
{
|
||||
return this._data;
|
||||
}
|
||||
|
||||
public dispose(): void
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
@ -9,6 +9,7 @@ export * from './FurniturePlacePaintComposer';
|
||||
export * from './FurniturePostItPlaceComposer';
|
||||
export * from './logic';
|
||||
export * from './mannequin';
|
||||
export * from './OpenMysteryTrophyMessageComposer';
|
||||
export * from './presents';
|
||||
export * from './toner';
|
||||
export * from './wall';
|
||||
|
Loading…
Reference in New Issue
Block a user