mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
* Entities semplification WIP * Bug fixes after entity semplification * Fix object serialization
21 lines
388 B
JavaScript
21 lines
388 B
JavaScript
import IEntity from "./IEntity.js"
|
|
|
|
export default class UnknownKeysEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
lookbehind: {
|
|
default: "",
|
|
ignored: true,
|
|
},
|
|
}
|
|
|
|
static {
|
|
this.cleanupAttributes(this.attributes)
|
|
}
|
|
|
|
constructor(values) {
|
|
super(values, true)
|
|
/** @type {String} */ this.lookbehind
|
|
}
|
|
}
|