mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-16 10:54:42 +08:00
Grammar refactoring WIP
This commit is contained in:
15
js/entity/VariableReferenceEntity.js
Normal file
15
js/entity/VariableReferenceEntity.js
Normal file
@@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user