mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2025-02-18 19:02:35 +01:00
#29 - GuideAdvertisementReadMessageComposer added
This commit is contained in:
parent
e70d9cc804
commit
9cfd71f8a2
File diff suppressed because one or more lines are too long
@ -423,6 +423,7 @@ export class OutgoingHeader
|
|||||||
public static GUIDE_SESSION_REPORT = 3969;
|
public static GUIDE_SESSION_REPORT = 3969;
|
||||||
public static GUIDE_SESSION_REQUESTER_CANCELS = 291;
|
public static GUIDE_SESSION_REQUESTER_CANCELS = 291;
|
||||||
public static GUIDE_SESSION_RESOLVED = 887;
|
public static GUIDE_SESSION_RESOLVED = 887;
|
||||||
|
public static GUIDE_ADVERTISEMENT_READ = 2455;
|
||||||
public static POST_QUIZ_ANSWERS = 3720;
|
public static POST_QUIZ_ANSWERS = 3720;
|
||||||
public static SEARCH_FAQS = 2031;
|
public static SEARCH_FAQS = 2031;
|
||||||
public static POLL_ANSWER = 3505;
|
public static POLL_ANSWER = 3505;
|
||||||
|
@ -0,0 +1,21 @@
|
|||||||
|
import { IMessageComposer } from '../../../../../api';
|
||||||
|
|
||||||
|
export class GuideAdvertisementReadMessageComposer implements IMessageComposer<ConstructorParameters<typeof GuideAdvertisementReadMessageComposer>>
|
||||||
|
{
|
||||||
|
private _data: ConstructorParameters<typeof GuideAdvertisementReadMessageComposer>;
|
||||||
|
|
||||||
|
constructor()
|
||||||
|
{
|
||||||
|
this._data = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
public getMessageArray()
|
||||||
|
{
|
||||||
|
return this._data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public dispose(): void
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
@ -1 +1,2 @@
|
|||||||
|
export * from './GuideAdvertisementReadMessageComposer';
|
||||||
export * from './TalentTrackComposer';
|
export * from './TalentTrackComposer';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user