Files
Nitro_Render_V3/packages/api/src/nitro/room/ISelectedRoomObjectData.ts
T
2024-04-03 09:27:56 +02:00

19 lines
393 B
TypeScript

import { IVector3D } from '../../utils';
import { IObjectData } from './object';
export interface ISelectedRoomObjectData
{
id: number;
category: number;
operation: string;
loc: IVector3D;
dir: IVector3D;
typeId: number;
instanceData: string;
stuffData: IObjectData;
state: number;
animFrame: number;
posture: string;
dispose: () => void;
}