mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-20 13:35:10 +08:00
13 lines
286 B
JavaScript
Executable File
13 lines
286 B
JavaScript
Executable File
// @ts-check
|
|
|
|
import IEntity from "./IEntity"
|
|
import ObjectReferenceEntity from "./ObjectReferenceEntity"
|
|
|
|
export default class FunctionReferenceEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
MemberParent: ObjectReferenceEntity,
|
|
MemberName: "",
|
|
}
|
|
}
|