Files
ueblueprint/js/entity/ObjectReferenceEntity.js
2022-11-15 14:31:26 +01:00

21 lines
459 B
JavaScript
Executable File

import IEntity from "./IEntity"
export default class ObjectReferenceEntity extends IEntity {
static attributes = {
type: String,
path: String,
}
constructor(options = {}) {
if (options.constructor !== Object) {
options = {
path: options
}
}
super(options)
/** @type {String} */ this.type
/** @type {String} */ this.path
}
}