mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-11 06:04:42 +08:00
15 lines
352 B
JavaScript
Executable File
15 lines
352 B
JavaScript
Executable File
import IEntity from "./IEntity"
|
|
import ObjectReferenceEntity from "./ObjectReferenceEntity"
|
|
|
|
export default class FunctionReferenceEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
MemberParent: ObjectReferenceEntity,
|
|
MemberName: ""
|
|
}
|
|
|
|
getAttributes() {
|
|
return FunctionReferenceEntity.attributes
|
|
}
|
|
}
|