ACAT.Lib.Core.PanelManagement.PanelConfigMap.findMapEntryInMapTable C# (CSharp) Method

findMapEntryInMapTable() private static method

Looks up the map table for the specified animation config file and returns the map entry
private static findMapEntryInMapTable ( String configName ) : ACAT.Lib.Core.PanelManagement.PanelConfigMapEntry
configName String name of the animation file
return ACAT.Lib.Core.PanelManagement.PanelConfigMapEntry
        private static PanelConfigMapEntry findMapEntryInMapTable(String configName)
        {
            PanelConfigMapEntry retVal = null;
            foreach (var list in _mapTable.Values)
            {
                retVal = findMapEntryInList(configName, list);
                if (retVal != null)
                {
                    break;
                }
            }

            return retVal;
        }