SplashScreenView.Start C# (CSharp) Méthode

Start() private méthode

private Start ( ) : void
Résultat void
    private void Start()
    {
        AudioManager.Instance.PlayMusic(m_Music);
    }

Usage Example

 private void ShowSplashScreenView()
 {
     _splashScreenView = new SplashScreenView();
     _pageView.Navigate(_splashScreenView);
     _splashScreenView.Complete += _splashView_Complete;
     _splashScreenView.Start();
 }
All Usage Examples Of SplashScreenView::Start
SplashScreenView