Files
ueblueprint/js/entity/LocalizedTextEntity.js
2022-10-09 11:43:28 +02:00

19 lines
439 B
JavaScript
Executable File

import IEntity from "./IEntity"
export default class LocalizedTextEntity extends IEntity {
static lookbehind = "NSLOCTEXT"
static attributes = {
namespace: String,
key: String,
value: String,
}
constructor(options = {}) {
super(options)
/** @type {String} */ this.namespace
/** @type {String} */ this.key
/** @type {String} */ this.value
}
}