mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-11 14:24:42 +08:00
13 lines
247 B
JavaScript
Executable File
13 lines
247 B
JavaScript
Executable File
import IEntity from "./IEntity"
|
|
|
|
export default class ObjectReferenceEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
type: String,
|
|
path: String
|
|
}
|
|
|
|
/** @type {String} */ type
|
|
/** @type {String} */ path
|
|
}
|