You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 23:16:20 +00:00
19 lines
393 B
TypeScript
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;
|
|
}
|