blob: 6891c9181e5e485929120143f2cebcbe50665f59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "cru/ui/controls/Window.h"
namespace cru::ui::controls {
Window* Window::Create(Control* attached_control) {
return new Window(attached_control);
}
Window::Window(Control* attached_control) : RootControl(attached_control) {}
Window::~Window() {}
} // namespace cru::ui::controls
|