nitro-renderer/packages/room/src/object/RoomMapMaskData.ts

17 lines
365 B
TypeScript
Raw Normal View History

2024-03-20 02:53:17 +01:00
import { IVector3D } from '@nitrots/api';
2021-03-17 03:02:09 +01:00
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;
}
2022-10-30 07:08:37 +01:00
}