mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 16:54:41 +08:00
16 lines
340 B
JavaScript
Executable File
16 lines
340 B
JavaScript
Executable File
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
|
|
}
|
|
}
|