mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-26 17:30:52 +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_REQUESTER_CANCELS = 291;
|
||||
public static GUIDE_SESSION_RESOLVED = 887;
|
||||
public static GUIDE_ADVERTISEMENT_READ = 2455;
|
||||
public static POST_QUIZ_ANSWERS = 3720;
|
||||
public static SEARCH_FAQS = 2031;
|
||||
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';
|
||||
|
Loading…
Reference in New Issue
Block a user