Files
ueblueprint/js/entity/LocalizedTextEntity.js
barsdeveloper 41b741e8b8 Small fixes
2022-01-08 18:57:37 +01:00

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
}
}