mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
24 lines
862 B
JavaScript
24 lines
862 B
JavaScript
import AttributeInfo from "./AttributeInfo.js"
|
|
import IEntity from "./IEntity.js"
|
|
|
|
export default class TerminalTypeEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
...super.attributes,
|
|
TerminalCategory: AttributeInfo.createType(String),
|
|
TerminalSubCategory: AttributeInfo.createType(String),
|
|
bTerminalIsConst: AttributeInfo.createType(Boolean),
|
|
bTerminalIsWeakPointer: AttributeInfo.createType(Boolean),
|
|
bTerminalIsUObjectWrapper: AttributeInfo.createType(Boolean),
|
|
}
|
|
|
|
constructor(values) {
|
|
super(values)
|
|
/** @type {String} */ this.TerminalCategory
|
|
/** @type {String} */ this.TerminalSubCategory
|
|
/** @type {Boolean} */ this.bTerminalIsConst
|
|
/** @type {Boolean} */ this.bTerminalIsWeakPointer
|
|
/** @type {Boolean} */ this.bTerminalIsUObjectWrapper
|
|
}
|
|
}
|