Files
ueblueprint/js/entity/SymbolEntity.js
2023-01-02 00:22:50 +01:00

18 lines
303 B
JavaScript

import IEntity from "./IEntity"
export default class SymbolEntity extends IEntity {
static attributes = {
value: "",
}
static {
this.cleanupAttributes(this.attributes)
}
constructor(values) {
super(values)
/** @type {String} */ this.value
}
}