mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
18 lines
526 B
JavaScript
Executable File
18 lines
526 B
JavaScript
Executable File
import IEntity from "./IEntity"
|
|
import ObjectReferenceEntity from "./ObjectReferenceEntity"
|
|
import TypeInitialization from "./TypeInitialization"
|
|
|
|
export default class FunctionReferenceEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
MemberParent: new TypeInitialization(ObjectReferenceEntity, false),
|
|
MemberName: "",
|
|
}
|
|
|
|
constructor(values) {
|
|
super(values)
|
|
/** @type {ObjectReferenceEntity} */ this.MemberParent
|
|
/** @type {String} */ this.MemberName
|
|
}
|
|
}
|