🆙 Small Fixes

This commit is contained in:
duckietm
2026-04-14 11:19:53 +02:00
parent 399999f23d
commit ca5e754b28
65 changed files with 1717 additions and 125 deletions
@@ -0,0 +1,21 @@
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;
}
}