mapcomplete/Customizations/Questions/FixedText.ts
2020-07-21 01:13:51 +02:00

14 lines
362 B
TypeScript

import { TagRenderingOptions } from "../TagRendering";
import {UIElement} from "../../UI/UIElement";
export default class FixedText extends TagRenderingOptions {
constructor(category: string | UIElement) {
super({
mappings: [
{
k: null, txt: category
}
]
})
}
}