Alexandria.Engines.DarkSouls.Archive.ArchiveFileManager.Exists C# (CSharp) Méthode

Exists() public méthode

public Exists ( string path ) : bool
path string
Résultat bool
            public override bool Exists(string path)
            {
                foreach (ArchiveRecord record in Archive.Records)
                    if (record.PathName == path)
                        return true;
                return false;
            }
Archive.ArchiveFileManager