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

19 lines
347 B
JavaScript

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