Files
ueblueprint/js/entity/TerminalTypeEntity.js
barsdeveloper 90f19e1bca Entities semplification
* Entities semplification WIP

* Bug fixes after entity semplification

* Fix object serialization
2023-05-05 18:50:31 +02:00

36 lines
879 B
JavaScript

import IEntity from "./IEntity.js"
export default class TerminalTypeEntity extends IEntity {
static attributes = {
TerminalCategory: {
type: String,
},
TerminalSubCategory: {
type: String,
},
bTerminalIsConst: {
type: Boolean,
},
bTerminalIsWeakPointer: {
type: Boolean,
},
bTerminalIsUObjectWrapper: {
type: Boolean,
},
}
static {
this.cleanupAttributes(this.attributes)
}
constructor(values) {
super(values)
/** @type {String} */ this.TerminalCategory
/** @type {String} */ this.TerminalSubCategory
/** @type {Boolean} */ this.bTerminalIsConst
/** @type {Boolean} */ this.bTerminalIsWeakPointer
/** @type {Boolean} */ this.bTerminalIsUObjectWrapper
}
}