mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 16:44:49 +08:00
16 lines
428 B
JavaScript
16 lines
428 B
JavaScript
import Entity from "./Entity"
|
|
import ObjectReferenceEntity from "./ObjectReferenceEntity"
|
|
|
|
export default class FunctionReferenceEntity extends Entity {
|
|
static attributes = {
|
|
MemberParent: new ObjectReferenceEntity({
|
|
type: "Class",
|
|
path: "/Script/Engine.GameplayStatics"
|
|
}),
|
|
MemberName: ""
|
|
}
|
|
|
|
getAttributes() {
|
|
return FunctionReferenceEntity.attributes
|
|
}
|
|
} |