mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
16 lines
391 B
JavaScript
Executable File
16 lines
391 B
JavaScript
Executable File
import IEntity from "./IEntity"
|
|
import GuidEntity from "./GuidEntity"
|
|
|
|
export default class VariableReferenceEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
MemberName: String,
|
|
MemberGuid: GuidEntity,
|
|
bSelfContext: false
|
|
}
|
|
|
|
/** @type {String} */ MemberName
|
|
/** @type {GuidEntity} */ MemberGuid
|
|
/** @type {Boolean} */ bSelfContext
|
|
}
|