mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-22 23:50:52 +01:00
Merge branch 'composer-get-talenttrack-level' of https://github.com/oobjectt/nitro-renderer into oobjectt-composer-get-talenttrack-level
This commit is contained in:
commit
6f4eece3c4
File diff suppressed because one or more lines are too long
@ -386,6 +386,7 @@ export class OutgoingHeader
|
||||
public static SET_TARGETTED_OFFER_STATE = 2041;
|
||||
public static SHOP_TARGETED_OFFER_VIEWED = 3483;
|
||||
public static HELPER_TALENT_TRACK = 196;
|
||||
public static TALENT_TRACK_GET_LEVEL = 2127;
|
||||
public static FORWARD_TO_A_COMPETITION_ROOM = 172;
|
||||
public static FORWARD_TO_A_SUBMITTABLE_ROOM = 1450;
|
||||
public static FORWARD_TO_RANDOM_COMPETITION_ROOM = 865;
|
||||
|
@ -0,0 +1,21 @@
|
||||
import { IMessageComposer } from '../../../../../api';
|
||||
|
||||
export class GetTalentTrackLevelMessageComposer implements IMessageComposer<ConstructorParameters<typeof GetTalentTrackLevelMessageComposer>>
|
||||
{
|
||||
private _data: ConstructorParameters<typeof GetTalentTrackLevelMessageComposer>;
|
||||
|
||||
constructor(name: string)
|
||||
{
|
||||
this._data = [name];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
{
|
||||
return this._data;
|
||||
}
|
||||
|
||||
public dispose(): void
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
@ -1 +1,2 @@
|
||||
export * from './GetTalentTrackLevelMessageComposer';
|
||||
export * from './TalentTrackComposer';
|
||||
|
Loading…
Reference in New Issue
Block a user