GAudio.GATSoundBank.LoadAll C# (CSharp) Method

LoadAll() public method

public LoadAll ( GATDataAllocationMode allocationMode ) : GATData>.Dictionary
allocationMode GATDataAllocationMode
return GATData>.Dictionary
        public Dictionary<string, GATData> LoadAll( GATDataAllocationMode allocationMode )
        {
            Dictionary< string, GATData > target = new Dictionary<string, GATData>( _sampleInfos.Count );
            int i;
            for( i = 0; i < _sampleInfos.Count; i++ )
            {
                LoadSample( _sampleInfos[ i ], target, allocationMode );
            }

            return target;
        }