Protogame.RawOgmoEditorLevelLoadStrategy.GetPotentialPaths C# (CSharp) Méthode

GetPotentialPaths() public méthode

public GetPotentialPaths ( string path, string name, bool noTranslate = false ) : System.Collections.Generic.IEnumerable
path string
name string
noTranslate bool
Résultat System.Collections.Generic.IEnumerable
        public System.Collections.Generic.IEnumerable<string> GetPotentialPaths(string path, string name, bool noTranslate = false)
        {
            yield return Path.Combine(path, (noTranslate ? name : name.Replace('.', Path.DirectorySeparatorChar)) + ".oel");
        }
    }
RawOgmoEditorLevelLoadStrategy