Files
ueblueprint/js/entity/ObjectReferenceEntity.js
2022-03-09 23:11:40 +01:00

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
}