Esempio n. 1
0
        /// <summary>
        /// Store the current match to the local datastore
        /// </summary>
        public async void StoreMatch()
        {
            if (CurrentMatch != null)
            {
                await StoreMatch(CurrentMatch);

                await CurrentMatch.Save();

                await CurrentMatch.SaveToOneDrive();
            }
        }