Exemplo n.º 1
0
        public static void Start(Save save)
        {
            if (_oobe == null)
            {
                throw new InvalidOperationException("OOBE frontend not activated! This function can't be used! Please use OutOfBoxExperience.Init() passing an IOobe-implementing object to start the OOBE frontend.");
            }


            _oobe.StartShowing(save);
        }
Exemplo n.º 2
0
        public static void Start(Save save)
        {
            //if its null then F**K YOU DID THE WRONG THING
            if (_oobe == null)
            {
                throw new InvalidOperationException("OOBE frontend not activated! This function can't be used! Please use OutOfBoxExperience.Init() passing an IOobe-implementing object to start the OOBE frontend.");
            }


            _oobe.StartShowing(save); //tells the save data to start showing the oobe
        }