Attribute cleanup forgot

This commit is contained in:
barsdeveloper
2023-01-04 15:53:38 +01:00
parent e72e04ae0a
commit 6230da391f
4 changed files with 16 additions and 0 deletions

View File

@@ -11,6 +11,10 @@ export default class UnknownKeysEntity extends IEntity {
},
}
static {
this.cleanupAttributes(this.attributes)
}
constructor(values) {
super(values)
/** @type {String} */ this.lookbehind

View File

@@ -18,6 +18,10 @@ export default class VariableReferenceEntity extends IEntity {
},
}
static {
this.cleanupAttributes(this.attributes)
}
constructor(values) {
super(values)
/** @type {String} */ this.MemberName

View File

@@ -7,6 +7,10 @@ export default class Vector2DEntity extends IEntity {
Y: 0,
}
static {
this.cleanupAttributes(this.attributes)
}
constructor(values) {
super(values)
/** @type {Number} */ this.X

View File

@@ -8,6 +8,10 @@ export default class VectorEntity extends IEntity {
Z: 0,
}
static {
this.cleanupAttributes(this.attributes)
}
constructor(values) {
super(values)
/** @type {Number} */ this.X