mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2025-01-19 06:46:28 +01: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;
|
|
}
|
|
}
|