mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-14 00:54:48 +08:00
25 lines
807 B
JavaScript
25 lines
807 B
JavaScript
import BooleanEntity from "./BooleanEntity.js"
|
|
import IEntity from "./IEntity.js"
|
|
import StringEntity from "./StringEntity.js"
|
|
|
|
export default class TerminalTypeEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
...super.attributes,
|
|
TerminalCategory: StringEntity,
|
|
TerminalSubCategory: StringEntity,
|
|
bTerminalIsConst: BooleanEntity,
|
|
bTerminalIsWeakPointer: BooleanEntity,
|
|
bTerminalIsUObjectWrapper: BooleanEntity,
|
|
}
|
|
|
|
constructor(values) {
|
|
super(values)
|
|
/** @type {String} */ this.TerminalCategory
|
|
/** @type {String} */ this.TerminalSubCategory
|
|
/** @type {Boolean} */ this.bTerminalIsConst
|
|
/** @type {Boolean} */ this.bTerminalIsWeakPointer
|
|
/** @type {Boolean} */ this.bTerminalIsUObjectWrapper
|
|
}
|
|
}
|