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