Files
Nitro_Render_V3/packages/api/src/room/object/visualization/IRoomPlane.ts
T
2026-03-10 15:40:24 +01:00

12 lines
215 B
TypeScript

import { IVector3D } from '../../../utils';
export interface IRoomPlane
{
uniqueId: number;
type: number;
location: IVector3D;
leftSide: IVector3D;
rightSide: IVector3D;
color: number;
}