mapcomplete/UI/Base/Ornament.ts

17 lines
392 B
TypeScript
Raw Normal View History

2021-01-07 03:50:12 +00:00
import {UIElement} from "../UIElement";
import {UIEventSource} from "../../Logic/UIEventSource";
import Svg from "../../Svg";
2021-01-08 23:03:21 +00:00
import State from "../../State";
2021-01-07 03:50:12 +00:00
export default class Ornament extends UIElement {
2021-01-08 23:03:21 +00:00
constructor(index = undefined) {
super();
2021-01-27 01:26:57 +00:00
this.SetClass("pt-3 pb-3 flex justify-center box-border")
2021-01-07 03:50:12 +00:00
}
InnerRender(): string {
2021-04-23 10:54:26 +00:00
return ""
2021-01-07 03:50:12 +00:00
}
}