mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 00:24:48 +08:00
17 lines
330 B
JavaScript
17 lines
330 B
JavaScript
import Entity from "./Entity"
|
|
|
|
export default class ObjectReferenceEntity extends Entity {
|
|
|
|
static attributes = {
|
|
type: "None",
|
|
path: ""
|
|
}
|
|
|
|
getAttributes() {
|
|
return ObjectReferenceEntity.attributes
|
|
}
|
|
|
|
toString() {
|
|
return this.type + (this.path ? `'"${this.path}"'` : "")
|
|
}
|
|
} |