You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 07:26:18 +00:00
22 lines
475 B
TypeScript
22 lines
475 B
TypeScript
import { IMessageComposer } from '@nitrots/api';
|
|
|
|
export class GetCurrentTimingCodeMessageComposer implements IMessageComposer<ConstructorParameters<typeof GetCurrentTimingCodeMessageComposer>>
|
|
{
|
|
private _data: ConstructorParameters<typeof GetCurrentTimingCodeMessageComposer>;
|
|
|
|
constructor(k: string)
|
|
{
|
|
this._data = [k];
|
|
}
|
|
|
|
public getMessageArray()
|
|
{
|
|
return this._data;
|
|
}
|
|
|
|
public dispose(): void
|
|
{
|
|
return;
|
|
}
|
|
}
|