Пример #1
0
        public App(IAppLifetimeInput appLifetimeInput)
        {
            Instance = this;

            InitLogging();

            InitHubs();
            if (appLifetimeInput != null)
            {
                InputHub.RegisterInput(appLifetimeInput);
            }

            InitSceneNavigator();
        }
Пример #2
0
        // Declare properties for your own services here.
        // For example;
        //public ISomeService SomeService { get; }

        public UniFoundationDevApp(IAppLifetimeInput appLifetimeInput) : base(appLifetimeInput)
        {
            // Instantiate your own services here.
            // SomeService = new ConcreteSomeService();
        }