Files
ueblueprint/js/entity/PathSymbolEntity.js
2021-12-05 20:49:07 +01:00

17 lines
265 B
JavaScript

import Entity from "./Entity"
export default class PathSymbolEntity extends Entity {
static attributes = {
value: String
}
getAttributes() {
return PathSymbolEntity.attributes
}
toString() {
return this.value
}
}