Files
ueblueprint/js/entity/FunctionReferenceEntity.js
2023-03-23 16:24:32 +01:00

32 lines
794 B
JavaScript
Executable File

import GuidEntity from "./GuidEntity.js"
import IEntity from "./IEntity.js"
import ObjectReferenceEntity from "./ObjectReferenceEntity.js"
export default class FunctionReferenceEntity extends IEntity {
static attributes = {
MemberParent: {
type: ObjectReferenceEntity,
showDefault: false
},
MemberName: {
type: String,
showDefault: false,
},
MemberGuid: {
type: GuidEntity,
showDefault: false,
},
}
static {
this.cleanupAttributes(this.attributes)
}
constructor(values) {
super(values)
/** @type {ObjectReferenceEntity} */ this.MemberParent
/** @type {String} */ this.MemberName
}
}