blob: 8c79f2c04b35c0c83ff492a98c2e3367263a4668 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
#include "components/MainWindow.hpp"
#include "cru/platform/bootstrap/Bootstrap.hpp"
int main() {
  using namespace cru::theme_builder;
  std::unique_ptr<cru::platform::gui::IUiApplication> application(
      cru::platform::bootstrap::CreateUiApplication());
  auto main_window = std::make_unique<MainWindow>();
  main_window->Show();
  return application->Run();
}
 
  |