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
17 lines
365 B
TypeScript
17 lines
365 B
TypeScript
import { IVector3D } from '@nitrots/api';
|
|
|
|
export class RoomMapMaskData
|
|
{
|
|
private _masks: { id: string, type: string, category: string, locations: IVector3D[] }[];
|
|
|
|
constructor()
|
|
{
|
|
this._masks = [];
|
|
}
|
|
|
|
public get masks(): { id: string, type: string, category: string, locations: IVector3D[] }[]
|
|
{
|
|
return this._masks;
|
|
}
|
|
}
|