mirror of
https://github.com/duckietm/Nitro-Cool-UI.git
synced 2025-06-21 22:36:58 +00:00
20 lines
473 B
TypeScript
20 lines
473 B
TypeScript
import { IObjectData, NitroEvent } from '@nitrots/nitro-renderer';
|
|
import { CatalogWidgetEvent } from './CatalogWidgetEvent';
|
|
|
|
export class CatalogSetRoomPreviewerStuffDataEvent extends NitroEvent
|
|
{
|
|
private _stuffData: IObjectData;
|
|
|
|
constructor(stuffData: IObjectData)
|
|
{
|
|
super(CatalogWidgetEvent.SET_PREVIEWER_STUFFDATA);
|
|
|
|
this._stuffData = stuffData;
|
|
}
|
|
|
|
public get stuffData(): IObjectData
|
|
{
|
|
return this._stuffData;
|
|
}
|
|
}
|