aboutsummaryrefslogtreecommitdiffstats
path: root/examples/Tutorial/Program.cs
blob: 9501c79e0e4472839beac87ba1c785ffd1e21b6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/***************************************************************************************************
 Copyright (C) 2025 The Qt Company Ltd.
 SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
***************************************************************************************************/
using Qt.Quick;

namespace Tutorial
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Qml.LoadFromRootModule("MainWindow");
            Qml.WaitForExit();
        }
    }
}