Files
ueblueprint/js/entity/FunctionReferenceEntity.js
barsdeveloper 8de12775a7 Fix input wrap
2023-01-30 21:39:31 +01:00

32 lines
785 B
JavaScript
Executable File

import GuidEntity from "./GuidEntity"
import IEntity from "./IEntity"
import ObjectReferenceEntity from "./ObjectReferenceEntity"
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
}
}