Files
ueblueprint/js/entity/ObjectReferenceEntity.js
2022-10-09 11:43:28 +02:00

16 lines
330 B
JavaScript
Executable File

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
}
}