Example #1
0
        static void Main()
        {
            var appViewSource = new UrhoAppViewSource <HelloWorldApplication>(new ApplicationOptions("Data"));

            appViewSource.UrhoAppViewCreated += OnViewCreated;
            CoreApplication.Run(appViewSource);
        }
Example #2
0
        static void Main()
        {
            var appViewSource = new UrhoAppViewSource <MyApp>(new ApplicationOptions("MyData"));

            appViewSource.UrhoAppViewCreated += OnViewCreated;
            CoreApplication.Run(appViewSource);
        }
Example #3
0
        static void Main()
        {
            var options       = new ApplicationOptions("Data");
            var appViewSource = new UrhoAppViewSource <MusicStandApplication>(options);

            appViewSource.UrhoAppViewCreated    += AppViewCreated;
            Urho.Application.UnhandledException += Application_UnhandledException;
            CoreApplication.Run(appViewSource);
        }
        static void Main()
        {
            var appViewSource = new UrhoAppViewSource <MainApplication>(new ApplicationOptions("Data"));

            CoreApplication.Run(appViewSource);
        }
        static void Main()
        {
            var appViewSource = new UrhoAppViewSource <HoloObjectDetectionApp>(new ApplicationOptions("Data"));

            CoreApplication.Run(appViewSource);
        }