UNPKG

@animech-public/playcanvas

Version:
23 lines (21 loc) 421 B
class ResourceHandler { constructor(app, handlerType) { this.handlerType = ''; this._app = void 0; this._maxRetries = 0; this._app = app; this.handlerType = handlerType; } set maxRetries(value) { this._maxRetries = value; } get maxRetries() { return this._maxRetries; } load(url, callback, asset) {} open(url, data, asset) { return data; } patch(asset, assets) {} } export { ResourceHandler };