AssemblyCSharp.UICookingMain.Start C# (CSharp) Метод

Start() публичный Метод

public Start ( ) : void
Результат void
        void Start()
        {
            var playService = ServiceLocator.Get<PlayService> ();
            PlayBackgroundSound ();
            if (ComponentType == ComponentType.None) {

                _pizzaDefinition = playService.NewTurnament ();

                TournamentStart.gameObject.SetActive (true);
                TournamentStart.Init (_pizzaDefinition);

                GetComponentInChildren<UIIngredientsGrid> ().Init ();

            } else {

                playService.StartCooking (ComponentType);
                InitUI ();
            }
        }