Files
ueblueprint/js/entity/ObjectReferenceEntity.js
2022-03-30 21:59:41 +02:00

22 lines
392 B
JavaScript
Executable File

// @ts-check
import IEntity from "./IEntity"
export default class ObjectReferenceEntity extends IEntity {
static attributes = {
type: String,
path: String,
}
constructor(options = {}) {
super(options)
/** @type {String} */ this.type
/** @type {String} */ this.path
}
empty() {
return false
}
}