Files
ueblueprint/js/entity/PathSymbolEntity.js
barsdeveloper 42615b93f8 Various fixes
2022-03-19 14:46:53 +01:00

13 lines
209 B
JavaScript
Executable File

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