UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

18 lines (14 loc) 309 B
import {SceneJsonImporter} from './Scene'; export class ImportReport { private _warnings: string[] = []; constructor(_scene_importer: SceneJsonImporter) {} warnings() { return this._warnings; } reset() { this._warnings = []; } add_warning(message: string) { this._warnings.push(message); } }