You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 15:06:20 +00:00
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
import { IVector3D } from '../../../utils';
|
|
|
|
export interface IRoomPlane
|
|
{
|
|
uniqueId: number;
|
|
type: number;
|
|
location: IVector3D;
|
|
leftSide: IVector3D;
|
|
rightSide: IVector3D;
|
|
color: number;
|
|
}
|