withSIX.Play.Core.Games.Legacy.Mods.ModState.SetSixSyncPaths C# (CSharp) Méthode

SetSixSyncPaths() private méthode

private SetSixSyncPaths ( ) : void
Résultat void
        void SetSixSyncPaths() {
            var path = Path;
            _repoPath = path == null ? null : path.GetChildDirectoryWithName(Repository.RepoFolderName);
            _repoYamlFile = _repoPath == null ? null : _repoPath.GetChildFileWithName(Repository.VersionFileName);
            _repoConfigYamlFile = _repoPath == null
                ? null
                : _repoPath.GetChildFileWithName(Repository.ConfigFileName);
        }