Files
ueblueprint/js/entity/PathSymbolEntity.js
2023-03-23 16:24:32 +01:00

26 lines
434 B
JavaScript
Executable File

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