SplashScreenView.Start C# (CSharp) Method

Start() private method

private Start ( ) : void
return 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