mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-10 21:34:42 +08:00
14 lines
339 B
JavaScript
Executable File
14 lines
339 B
JavaScript
Executable File
import Entity from "./Entity"
|
|
import ObjectReference from "./primitive/ObjectReference"
|
|
|
|
export default class FunctionReferenceEntity extends Entity {
|
|
static attributes = {
|
|
MemberParent: ObjectReference,
|
|
MemberName: ""
|
|
}
|
|
|
|
getAttributes() {
|
|
return FunctionReferenceEntity.attributes
|
|
}
|
|
}
|