mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
15 lines
331 B
JavaScript
15 lines
331 B
JavaScript
import GuidEntity from "./GuidEntity"
|
|
import Entity from "./Entity"
|
|
|
|
export default class VariableReferenceEntity extends Entity {
|
|
|
|
static attributes = {
|
|
MemberName: String,
|
|
MemberGuid: GuidEntity,
|
|
bSelfContext: true
|
|
}
|
|
|
|
getAttributes() {
|
|
return VariableReferenceEntity.attributes
|
|
}
|
|
} |