Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down