mapcomplete/Customizations/Questions/FixedText.ts

13 lines
304 B
TypeScript
Raw Normal View History

2020-07-07 14:39:11 +00:00
import { TagRenderingOptions } from "../TagRendering";
export default class FixedText extends TagRenderingOptions {
2020-07-07 14:39:11 +00:00
constructor(category: string) {
super({
mappings: [
{
k: null, txt: category
}
]
})
}
}