mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-26 17:30:52 +01:00
#29 - UpdateRoomCategoryAndTradeSettingsComposer added
This commit is contained in:
parent
e70d9cc804
commit
8355d5b70a
File diff suppressed because one or more lines are too long
@ -193,6 +193,7 @@ export class OutgoingHeader
|
|||||||
public static ROOM_RIGHTS_REMOVE_OWN = 3182;
|
public static ROOM_RIGHTS_REMOVE_OWN = 3182;
|
||||||
public static ROOM_SETTINGS = 3129;
|
public static ROOM_SETTINGS = 3129;
|
||||||
public static ROOM_SETTINGS_SAVE = 1969;
|
public static ROOM_SETTINGS_SAVE = 1969;
|
||||||
|
public static ROOM_SETTINGS_UPDATE_ROOM_CATEGORY_AND_TRADE = 1265;
|
||||||
public static ROOM_STAFF_PICK = 1918;
|
public static ROOM_STAFF_PICK = 1918;
|
||||||
public static ROOM_FILTER_WORDS = 1911;
|
public static ROOM_FILTER_WORDS = 1911;
|
||||||
public static ROOM_FILTER_WORDS_MODIFY = 3001;
|
public static ROOM_FILTER_WORDS_MODIFY = 3001;
|
||||||
|
@ -0,0 +1,21 @@
|
|||||||
|
import { IMessageComposer } from '../../../../../api';
|
||||||
|
|
||||||
|
export class UpdateRoomCategoryAndTradeSettingsComposer implements IMessageComposer<ConstructorParameters<typeof UpdateRoomCategoryAndTradeSettingsComposer>>
|
||||||
|
{
|
||||||
|
private _data: ConstructorParameters<typeof UpdateRoomCategoryAndTradeSettingsComposer>;
|
||||||
|
|
||||||
|
constructor(k: number, _arg_2: number, _arg_3: number)
|
||||||
|
{
|
||||||
|
this._data = [k, _arg_2, _arg_3];
|
||||||
|
}
|
||||||
|
|
||||||
|
public getMessageArray()
|
||||||
|
{
|
||||||
|
return this._data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public dispose(): void
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
@ -1 +1,2 @@
|
|||||||
export * from './SaveableRoomSettingsData';
|
export * from './SaveableRoomSettingsData';
|
||||||
|
export * from './UpdateRoomCategoryAndTradeSettingsComposer';
|
||||||
|
Loading…
Reference in New Issue
Block a user