mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-10 13:24:40 +08:00
16 lines
323 B
JavaScript
Executable File
16 lines
323 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
|
|
}
|
|
|
|
getAttributes() {
|
|
return LocalizedTextEntity.attributes
|
|
}
|
|
}
|