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

19 lines
463 B
JavaScript
Executable File

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