mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-26 17:30:52 +01:00
Merge branch 'feature/profile-by-name-packet' into 'dev'
added GetExtendedProfileByNameMessageComposer See merge request nitro/nitro-renderer!8
This commit is contained in:
commit
170d83c795
File diff suppressed because one or more lines are too long
@ -186,6 +186,7 @@ export class OutgoingHeader
|
||||
public static USER_IGNORED = 3878;
|
||||
public static USER_PETS = 3095;
|
||||
public static USER_PROFILE = 3265;
|
||||
public static USER_PROFILE_BY_NAME = 2249;
|
||||
public static USER_RESPECT = 2694;
|
||||
public static GET_SOUND_SETTINGS = 2388;
|
||||
public static USER_SETTINGS_CAMERA = 1461;
|
||||
|
@ -0,0 +1,21 @@
|
||||
import { IMessageComposer } from '../../../../../../core';
|
||||
|
||||
export class GetExtendedProfileByNameMessageComposer implements IMessageComposer<ConstructorParameters<typeof GetExtendedProfileByNameMessageComposer>>
|
||||
{
|
||||
private _data: ConstructorParameters<typeof GetExtendedProfileByNameMessageComposer>;
|
||||
|
||||
constructor(username: string)
|
||||
{
|
||||
this._data = [ username ];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
{
|
||||
return this._data;
|
||||
}
|
||||
|
||||
public dispose(): void
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
@ -1,3 +1,4 @@
|
||||
export * from './GetExtendedProfileByNameMessageComposer';
|
||||
export * from './GetIgnoredUsersComposer';
|
||||
export * from './IgnoreUserComposer';
|
||||
export * from './IgnoreUserIdComposer';
|
||||
|
Loading…
Reference in New Issue
Block a user