mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-22 23:50:52 +01:00
Competition | Change name variables
This commit is contained in:
parent
961540b045
commit
cb827c0b2e
@ -4,9 +4,9 @@ export class ForwardToACompetitionRoomMessageComposer implements IMessageCompose
|
||||
{
|
||||
private _data: ConstructorParameters<typeof ForwardToACompetitionRoomMessageComposer>;
|
||||
|
||||
constructor(k: string, _arg_2: number)
|
||||
constructor(goalCode: string, userId: number)
|
||||
{
|
||||
this._data = [k, _arg_2];
|
||||
this._data = [goalCode, userId];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
|
@ -4,9 +4,9 @@ export class ForwardToRandomCompetitionRoomMessageComposer implements IMessageCo
|
||||
{
|
||||
private _data: ConstructorParameters<typeof ForwardToRandomCompetitionRoomMessageComposer>;
|
||||
|
||||
constructor(k: string)
|
||||
constructor(goalCode: string)
|
||||
{
|
||||
this._data = [k];
|
||||
this._data = [goalCode];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
|
@ -4,9 +4,9 @@ export class GetCurrentTimingCodeMessageComposer implements IMessageComposer<Con
|
||||
{
|
||||
private _data: ConstructorParameters<typeof GetCurrentTimingCodeMessageComposer>;
|
||||
|
||||
constructor(k: string)
|
||||
constructor(schedulingStr: string)
|
||||
{
|
||||
this._data = [k];
|
||||
this._data = [schedulingStr];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
|
@ -4,9 +4,9 @@ export class GetIsUserPartOfCompetitionMessageComposer implements IMessageCompos
|
||||
{
|
||||
private _data: ConstructorParameters<typeof GetIsUserPartOfCompetitionMessageComposer>;
|
||||
|
||||
constructor(k: string)
|
||||
constructor(goalCode: string)
|
||||
{
|
||||
this._data = [k];
|
||||
this._data = [goalCode];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
|
@ -4,9 +4,9 @@ export class GetSecondsUntilMessageComposer implements IMessageComposer<Construc
|
||||
{
|
||||
private _data: ConstructorParameters<typeof GetSecondsUntilMessageComposer>;
|
||||
|
||||
constructor(k: string)
|
||||
constructor(timeStr: string)
|
||||
{
|
||||
this._data = [k];
|
||||
this._data = [timeStr];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
|
@ -9,9 +9,9 @@ export class SubmitRoomToCompetitionMessageComposer implements IMessageComposer<
|
||||
|
||||
private _data: ConstructorParameters<typeof SubmitRoomToCompetitionMessageComposer>;
|
||||
|
||||
constructor(k: string, _arg_2: number)
|
||||
constructor(goalCode: string, confirmLevel: number)
|
||||
{
|
||||
this._data = [k, _arg_2];
|
||||
this._data = [goalCode, confirmLevel];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
|
@ -4,9 +4,9 @@ export class VoteForRoomMessageComposer implements IMessageComposer<ConstructorP
|
||||
{
|
||||
private _data: ConstructorParameters<typeof VoteForRoomMessageComposer>;
|
||||
|
||||
constructor(k: string)
|
||||
constructor(goalCode: string)
|
||||
{
|
||||
this._data = [k];
|
||||
this._data = [goalCode];
|
||||
}
|
||||
|
||||
public getMessageArray()
|
||||
|
Loading…
Reference in New Issue
Block a user