You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 15:06:20 +00:00
22 lines
532 B
TypeScript
22 lines
532 B
TypeScript
import { IMessageComposer } from '@nitrots/api';
|
|
|
|
export class WiredUserInspectMoveComposer implements IMessageComposer<ConstructorParameters<typeof WiredUserInspectMoveComposer>>
|
|
{
|
|
private _data: ConstructorParameters<typeof WiredUserInspectMoveComposer>;
|
|
|
|
constructor(roomUnitId: number, x: number, y: number, direction: number)
|
|
{
|
|
this._data = [ roomUnitId, x, y, direction ];
|
|
}
|
|
|
|
public getMessageArray()
|
|
{
|
|
return this._data;
|
|
}
|
|
|
|
public dispose(): void
|
|
{
|
|
return;
|
|
}
|
|
}
|