Пример #1
0
        private void CheckSteamID()
        {
            if (SteamID.Length == 17 && SteamID.Contains("7656119"))
            {
                CanRetrieve = true;
                Directory.CreateDirectory(@_folder + "/matches/" + SteamID);

                _internalId      = new SteamId(SteamID);
                CurrentClassView = new ClassStatsViewmodel(_internalId, Classes.All);

                LoadOfflineMatches();
            }
            else
            {
                CanRetrieve = false;
            }
        }