import App from "../../core/App";
import UIComponent from "./UIComponent";
import UIWindow from "../../controls/UIWindow";
export default class UIWindowComponent extends UIComponent {
constructor(app: App, public readonly window: UIWindow) {
super(app);
}
}