mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:17:41 +08:00
15 lines
235 B
JavaScript
15 lines
235 B
JavaScript
export default class ISerializable {
|
|
|
|
#showAsString = false
|
|
|
|
isShownAsString() {
|
|
return this.#showAsString
|
|
}
|
|
|
|
/**
|
|
* @param {Boolean} v
|
|
*/
|
|
setShowAsString(v) {
|
|
this.#showAsString = v
|
|
}
|
|
} |