mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
14 lines
259 B
JavaScript
Executable File
14 lines
259 B
JavaScript
Executable File
import Entity from "./Entity"
|
|
|
|
export default class ObjectReferenceEntity extends Entity {
|
|
|
|
static attributes = {
|
|
type: String,
|
|
path: String
|
|
}
|
|
|
|
getAttributes() {
|
|
return ObjectReferenceEntity.attributes
|
|
}
|
|
}
|