FyreVM.Quetzal.Contains C# (CSharp) Method

Contains() public method

Checks whether the Quetzal file contains a given chunk type.
public Contains ( string type ) : bool
type string The 4-character type identifier.
return bool
        public bool Contains(string type)
        {
            return chunks.ContainsKey(StrToID(type));
        }