mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-10 21:34:42 +08:00
16 lines
320 B
JavaScript
Executable File
16 lines
320 B
JavaScript
Executable File
import Entity from "./Entity"
|
|
|
|
export default class LocalizedTextEntity extends Entity {
|
|
|
|
static lookbehind = "NSLOCTEXT"
|
|
static attributes = {
|
|
namespace: String,
|
|
key: String,
|
|
value: String
|
|
}
|
|
|
|
getAttributes() {
|
|
return LocalizedTextEntity.attributes
|
|
}
|
|
}
|