mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-10 21:34:42 +08:00
12 lines
198 B
JavaScript
Executable File
12 lines
198 B
JavaScript
Executable File
// @ts-check
|
|
|
|
import IEntity from "./IEntity"
|
|
|
|
export default class ObjectReferenceEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
type: String,
|
|
path: String,
|
|
}
|
|
}
|