mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
15 lines
280 B
JavaScript
15 lines
280 B
JavaScript
import IEntity from "./IEntity"
|
|
|
|
export default class InvariantTextEntity extends IEntity {
|
|
|
|
static lookbehind = "INVTEXT"
|
|
static attributes = {
|
|
value: String,
|
|
}
|
|
|
|
constructor(values) {
|
|
super(values)
|
|
/** @type {String} */ this.value
|
|
}
|
|
}
|