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