mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-26 17:30:52 +01:00
missed one
This commit is contained in:
parent
d208aaa283
commit
2cc9598141
@ -0,0 +1,21 @@
|
||||
import { IMessageComposer } from '../../../../../core/communication/messages/IMessageComposer';
|
||||
|
||||
export class PollRejectComposer implements IMessageComposer<ConstructorParameters<typeof PollRejectComposer>>
|
||||
{
|
||||
private _data: ConstructorParameters<typeof PollRejectComposer>;
|
||||
|
||||
constructor(k: number)
|
||||
{
|
||||
this._data = [ k ];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
{
|
||||
return this._data;
|
||||
}
|
||||
|
||||
public dispose(): void
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user