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
chore: checkpoint current work
This commit is contained in:
@@ -277,6 +277,7 @@ export class OutgoingHeader
|
||||
public static WIRED_USER_VARIABLES_REQUEST = 10024;
|
||||
public static WIRED_USER_VARIABLE_UPDATE = 10025;
|
||||
public static WIRED_USER_VARIABLE_MANAGE = 10026;
|
||||
public static WIRED_USER_INSPECT_MOVE = 10027;
|
||||
public static WIRED_OPEN = 768;
|
||||
public static WIRED_TRIGGER_SAVE = 1520;
|
||||
public static GET_ITEM_DATA = 3964;
|
||||
|
||||
+21
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -7,6 +7,7 @@ export * from './UpdateTriggerMessageComposer';
|
||||
export * from './WiredMonitorRequestComposer';
|
||||
export * from './WiredRoomSettingsRequestComposer';
|
||||
export * from './WiredRoomSettingsSaveComposer';
|
||||
export * from './WiredUserInspectMoveComposer';
|
||||
export * from './WiredUserVariableManageComposer';
|
||||
export * from './WiredUserVariablesRequestComposer';
|
||||
export * from './WiredUserVariableUpdateComposer';
|
||||
|
||||
Reference in New Issue
Block a user