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