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