mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
24 lines
500 B
JavaScript
24 lines
500 B
JavaScript
import AttributeInfo from "./AttributeInfo.js"
|
|
import IEntity from "./IEntity.js"
|
|
|
|
export default class Base64ObjectsEncoded extends IEntity {
|
|
|
|
static attributes = {
|
|
...super.attributes,
|
|
value: AttributeInfo.createType(String),
|
|
objects: new AttributeInfo({
|
|
ignored: true,
|
|
}),
|
|
}
|
|
|
|
constructor(values) {
|
|
super(values)
|
|
/** @type {String} */this.value
|
|
/** @type {ObjectEntity[]} */this.objects
|
|
}
|
|
|
|
decode() {
|
|
|
|
}
|
|
}
|