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