Files
ueblueprint/js/entity/VariableReferenceEntity.js
2022-03-09 23:12:55 +01:00

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
}