blob: b18811362858ace3cfffe58a4c0a4b3e113d801f (
plain)
| 1
2
3
4
5
6
7
 | #include "cru/ui/controls/Window.h"
namespace cru::ui::controls {
Window::Window(Control* attached_control) : RootControl(attached_control) {}
Window::~Window() {}
}  // namespace cru::ui::controls
 |