1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
---|---|
2 | // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial |
3 | |
4 | #include "logic.h" |
5 | #include "appwindow.h" |
6 | |
7 | int main(int argc, char **argv) |
8 | { |
9 | auto my_ui = App::create(); |
10 | setup_logic(my_ui->global<Logic>()); |
11 | my_ui->run(); |
12 | } |
13 |